/* RESET & NORMALIZATION */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
main, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  /* 62.5% makes 1rem = 10px for easier math */
  font-size: 62.5%;
  scroll-behavior: smooth;
}
body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1.6rem;
  color: #274156;
  background-color: #F4F6F8;
  min-height: 100vh;
  line-height: 1.7;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}
*, *:before, *:after { box-sizing: inherit; }
a {
  color: #274156;
  text-decoration: none;
  transition: color .25s;
}
a:focus { outline: 2px solid #A8C645; }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  margin: 0 0 16px 0;
  line-height: 1.1;
  letter-spacing: 0.01em;
}
h1 { font-size: 4.8rem; color: #274156; margin-bottom: 18px; }
h2 { font-size: 3.2rem; color: #A8C645; margin-bottom: 16px; }
h3 { font-size: 2.2rem; color: #274156; margin-bottom: 12px; }
h4 { font-size: 1.8rem; color: #274156; margin-bottom: 10px; }
.subtitle {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1.8rem;
  color: #274156;
  margin-bottom: 24px;
}
.button-primary, .button-primary:visited {
  display: inline-block;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-size: 1.8rem;
  background-color: #A8C645;
  color: #274156;
  padding: 14px 32px;
  border-radius: 32px;
  border: none;
  cursor: pointer;
  margin-top: 8px;
  box-shadow: 0 2px 10px 0 rgba(168,198,69,0.10);
  transition: background .25s, color .25s, transform .13s;
  position: relative;
  z-index: 1;
  text-align: center;
}
.button-primary:hover, .button-primary:focus {
  background-color: #274156;
  color: #A8C645;
  transform: translateY(-2px) scale(1.06) skewY(-1.5deg);
  box-shadow: 0 8px 32px 0 rgba(39,65,86,0.12);
}
.button-secondary {
  display: inline-block;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1.6rem;
  background-color: #fff;
  color: #A8C645;
  border: 2px solid #A8C645;
  padding: 10px 24px;
  border-radius: 26px;
  box-shadow: 0 2px 10px 0 rgba(168,198,69,0.07);
  cursor: pointer;
  margin-top: 8px;
  transition: background .2s, color .2s;
}
.button-secondary:hover, .button-secondary:focus {
  background-color: #A8C645;
  color: #fff;
  border-color: #274156;
}
section, .section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
/* ===== Header & Navigation ===== */
header {
  background: #fff;
  box-shadow: 0 2px 12px 0 rgba(39,65,86,0.08);
  position: sticky;
  top: 0;
  z-index: 100;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  min-height: 72px;
}
.main-nav .logo img {
  height: 52px;
  width: auto;
}
.main-nav ul {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
}
.main-nav ul li a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.7rem;
  color: #274156;
  font-weight: 700;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
}
.main-nav ul li a.button-primary {
  margin-left: 12px;
  padding: 12px 24px;
  font-size: 1.6rem;
}
.main-nav ul li a:hover, .main-nav ul li a:focus {
  color: #A8C645;
  border-bottom: 2px solid #A8C645;
}
.mobile-menu-toggle {
  display: none;
  background: #A8C645;
  color: #274156;
  font-size: 2.8rem;
  border: none;
  border-radius: 8px;
  width: 48px;
  height: 48px;
  margin-left: 16px;
  align-items: center;
  justify-content: center;
  transition: background .2s;
  position: relative;
  z-index: 300;
  cursor: pointer;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #274156;
  color: #A8C645;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 100vh;
  width: 100vw;
  background: #fff;
  box-shadow: 0 12px 32px rgba(39,65,86,0.16);
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.36,.66,.04,1);
  z-index: 500;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px 24px;
}
.mobile-menu.active {
  transform: translateX(0);
  transition: transform .35s cubic-bezier(.44,1.6,.64,1);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #A8C645;
  font-size: 2.4rem;
  align-self: flex-end;
  cursor: pointer;
  margin-bottom: 16px;
  transition: color .2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #274156;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 2.2rem;
  color: #274156;
  padding: 10px 0;
  width: 100%;
  border-bottom: 2px solid transparent;
  transition: color .18s, border-color .20s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #A8C645;
  border-bottom: 2px solid #A8C645;
}
/* ===== HERO ===== */
.hero {
  background: linear-gradient(90deg, #A8C645 17%, #F4F6F8 81%);
  border-bottom: 4px solid #A8C645;
  display: flex;
  align-items: center;
  min-height: 440px;
  padding-top: 56px; padding-bottom: 56px;
  margin-bottom: 60px;
}
.hero .container, .hero .content-wrapper {
  justify-content: center;
  align-items: flex-start;
}
.hero h1 {
  color: #274156;
  font-size: 4.8rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  margin-bottom: 12px;
  font-weight: 800;
}
.hero p.subtitle {
  color: #274156;
  font-size: 2rem;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
}
.hero .button-primary {
  margin-top: 28px;
  font-size: 2rem;
  padding: 16px 40px;
}
/* ===== SECTIONS COMMON ===== */
.features, .services-overview, .testimonials, .cta, .about, .history, .values,
.services-list, .faq, .case-studies, .blog-list, .subscribe, .contact-form, .contact-info, .contact-cta, .privacy-policy, .gdpr, .cookie-policy, .terms, .thank-you {
  background-color: #fff;
  border-radius: 22px;
  box-shadow: 0 6px 32px 0 rgba(39,65,86,0.06);
}
h2 {
  /* Electric color heading underline */
  position: relative;
  margin-bottom: 10px;
}
h2::after {
  content: '';
  display: block;
  width: 64px;
  height: 6px;
  border-radius: 8px;
  margin-top: 8px;
  background: #A8C645;
}
/* ===== FEATURE CARDS/GRID ===== */
.features .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: flex-start;
  margin-top: 28px;
  margin-bottom: 10px;
}
.features .feature-grid li {
  background: #F4F6F8;
  border-radius: 16px;
  box-shadow: 0 2px 18px rgba(168,198,69,0.07);
  padding: 30px 24px;
  flex: 1 1 225px;
  min-width: 225px;
  max-width: 300px;
  display: flex; flex-direction: column; align-items: flex-start; gap: 15px;
  margin-bottom: 20px;
  transition: box-shadow .25s, transform .22s;
  position: relative;
  border-left: 6px solid #A8C645;
}
.features .feature-grid li img {
  width: 36px; height: 36px; margin-bottom: 6px; filter: saturate(1.3) hue-rotate(-5deg); }
.features .feature-grid li h3 {
  font-size: 2.0rem;
  line-height: 1.25;
}
.features .feature-grid li:hover {
  box-shadow: 0 8px 32px rgba(168,198,69,0.16);
  transform: translateY(-8px) scale(1.04);
}
/* ====== SERVICE CARDS ======= */
.services-overview .service-cards, .service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
}
.service-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 20px 0 rgba(39,65,86,0.07);
  padding: 24px 22px 30px 22px;
  min-width: 260px;
  flex: 1 1 260px;
  max-width: 325px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  position: relative;
  border-bottom: 4px solid #A8C645;
  transition: transform .18s, box-shadow .2s;
}
.service-card img {
  width: 44px;
  height: 44px;
  filter: saturate(1.25) brightness(1.02);
}
.service-card h3 {
  font-size: 2.0rem;
}
.service-card .price {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #A8C645;
  font-size: 1.5rem;
  margin-bottom: 8px;
  font-weight: 700;
}
.service-card a {
  color: #274156;
  text-decoration: underline;
  font-weight: 700;
  margin-top: 8px;
  transition: color .20s;
}
.service-card a:hover, .service-card a:focus {
  color: #A8C645;
}
.service-card:hover {
  box-shadow: 0 12px 36px 0 rgba(168,198,69,0.13);
  transform: translateY(-5px) scale(1.03);
}
/* ===== TESTIMONIALS ===== */
.testimonials .testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 28px 26px;
  background: #F4F6F8;
  border-radius: 18px;
  margin-bottom: 24px;
  box-shadow: 0 4px 18px 0 rgba(168,198,69,0.09);
  border-left: 7px solid #A8C645;
}
.testimonials .testimonial-card blockquote {
  font-size: 1.7rem;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-style: italic;
  color: #274156;
  margin-bottom: 8px;
}
.testimonial-name { font-size: 1.5rem; color: #274156; font-family: 'Montserrat'; font-weight: 600; }
.testimonial-rating {
  color: #A8C645;
  font-size: 2.0rem;
  letter-spacing: 2px;
  font-family: 'Montserrat';
}
/* ===== CTA Section ===== */
.cta {
  background: #A8C645;
  color: #fff;
  border-radius: 22px;
  box-shadow: 0 8px 32px 0 rgba(168,198,69,0.10);
  display: flex;
  align-items: center;
}
.cta h2, .cta p { color: #fff; }
.cta .button-primary {
  background: #fff;
  color: #A8C645;
  border: 2.5px solid #fff;
  margin-top: 16px;
}
.cta .button-primary:hover, .cta .button-primary:focus {
  background: #274156;
  color: #fff;
  border-color: #A8C645;
}
/* ===== SERVICE LIST PAGE ===== */
.services-list .service-list {
  display: flex; flex-direction: column;
  gap: 24px;
}
.service-item {
  background: #F4F6F8;
  border-radius: 12px;
  padding: 24px 22px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  box-shadow: 0 6px 20px 0 rgba(168,198,69,0.07);
  border-left: 6px solid #A8C645;
}
.service-item h2 {
  font-size: 2.0rem;
  color: #274156;
}
.pricing-table {
  width: 100%;
  margin-top: 28px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 14px 0 rgba(39,65,86,0.08);
  overflow: hidden;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.6rem;
  border-collapse: collapse;
}
.pricing-table caption {
  caption-side: top;
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 6px;
  color: #A8C645;
  text-align: left;
}
.pricing-table thead {
  background: #A8C645;
  color: #fff;
}
.pricing-table th, .pricing-table td {
  padding: 14px 10px;
}
.pricing-table tr:nth-child(even) td {
  background: #F4F6F8;
}
.pricing-table tr:nth-child(odd) td {
  background: #fff;
}
.pricing-table th {
  font-weight: bold;
}
/* ===== FAQ ===== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.faq-list li {
  background: #F4F6F8;
  padding: 18px 16px;
  border-radius: 10px;
  box-shadow: 0 3px 10px 0 rgba(39,65,86,0.06);
}
.faq-list strong {
  color: #A8C645;
  font-weight: 700;
  font-family: 'Montserrat';
  font-size: 1.7rem;
  margin-bottom: 4px;
  display: block;
}
/* ===== ABOUT / VALUES ===== */
.tagline {
  background: #A8C645;
  color: #fff;
  font-size: 1.7rem;
  font-family: 'Montserrat';
  padding: 14px 23px;
  border-radius: 13px;
  font-weight: 600;
  margin: 12px 0;
  box-shadow: 0 3px 18px 0 rgba(168,198,69,0.07);
}
.mission {
  background: #F4F6F8;
  border-radius: 12px;
  box-shadow: 0 3px 12px 0 rgba(39,65,86,0.04);
  padding: 20px 18px;
  margin-top: 12px;
}
/* ===== CASE STUDIES / PORTOFOLIU ===== */
.case-studies .case-summary {
  background: #F4F6F8;
  border-radius: 15px;
  box-shadow: 0 3px 14px 0 rgba(168,198,69,0.08);
  margin-bottom: 32px;
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  border-left: 6px solid #A8C645;
}
.client-testimony {
  background: #fff;
  padding: 20px 18px;
  border-radius: 10px;
  margin-top: 16px;
  box-shadow: 0 2px 7px 0 rgba(168,198,69,0.05);
}
.client-testimony blockquote { color: #274156; font-size: 1.6rem; }
.client-testimony span { display: block; color: #A8C645; margin-top: 8px; font-weight: 600; }
/* ===== BLOG LIST/POST TEASERS ===== */
.blog-list .post-teasers {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 28px;
}
.post-teasers article {
  background: #F4F6F8;
  border-radius: 11px;
  padding: 22px 20px;
  box-shadow: 0 2px 12px 0 rgba(39,65,86,0.08);
  display: flex;
  flex-direction: column;
  gap: 7px;
  border-left: 4px solid #A8C645;
  margin-bottom: 20px;
  transition: box-shadow .18s, transform .17s;
}
.post-teasers article:hover {
  box-shadow: 0 8px 24px 0 rgba(168,198,69,0.10);
  transform: translateY(-4px) scale(1.01);
}
.post-teasers h2 {
  font-size: 2.0rem;
}
.post-date { font-size: 1.4rem; color: #A8C645; font-weight: 600; }
.category {
  background: #A8C645;
  color: #fff;
  font-size: 1.3rem;
  border-radius: 7px;
  padding: 3px 13px;
  display: inline-block;
  margin-top: 5px;
  font-family: 'Montserrat';
}
/* ===== SUBSCRIBE SECTION ===== */
.subscribe {
  background: #FFF8D5;
  border-radius: 18px;
  box-shadow: 0 4px 22px 0 rgba(168,198,69,0.08);
  margin-bottom: 60px;
}
.subscribe h2 { color: #A8C645; }
.subscribe a {
  color: #274156;
  font-weight: 700;
  text-decoration: underline;
}
/* ===== CONTACT PAGE ===== */
.contact-form .contact-fields ul {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 6px;
}
.contact-form .message-field, .contact-form .submit-area {
  margin-top: 15px;
  font-size: 1.6rem;
}
.contact-info ul {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.contact-cta {
  background: #A8C645;
  color: #fff;
  border-radius: 18px;
  display: flex;
  align-items: center;
}
.contact-cta h2, .contact-cta a { color: #fff; }
.contact-cta .button-primary {
  background: #fff;
  color: #A8C645;
  margin-top: 12px;
}
.contact-cta .button-primary:hover {
  background: #274156;
  color: #fff;
}
/* ===== THANK YOU SECTION ===== */
.thank-you {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 6px 34px 0 rgba(168,198,69,0.11);
  text-align: left;
}
.thank-you h1 { color: #A8C645; margin-bottom: 18px; }
.thank-you a.button-primary {
  margin-top: 24px;
}
/* ===== FOOTER ===== */
footer {
  background: #274156;
  color: #fff;
  padding: 56px 0 32px 0;
}
.footer-navigation {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 36px;
  margin-bottom: 16px;
}
.footer-navigation nav {
  display: flex;
  flex-direction: row;
  gap: 20px;
}
.footer-navigation a {
  color: #fff;
  font-family: 'Montserrat', Arial;
  font-weight: 600;
  font-size: 1.7rem;
  transition: color .17s;
}
.footer-navigation a:hover {
  color: #A8C645;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 8px;
  font-size: 1.35rem;
}
.footer-links a {
  color: #A8C645;
  font-family: 'Open Sans', Arial;
  font-weight: 600;
  text-decoration: underline;
  transition: color .15s;
}
.footer-links a:hover {
  color: #fff;
}
.footer-contact {
  margin-top: 10px;
  font-size: 1.35rem;
  color: #fff;
}
.footer-contact a { color: #A8C645; font-weight: 700; }
/* ===== COOKIE CONSENT BANNER ===== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #fff;
  color: #274156;
  z-index: 1000;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px 10px;
  box-shadow: 0 -6px 24px 0 rgba(168,198,69,0.14);
  border-top: 3px solid #A8C645;
  gap: 26px;
  transition: transform .35s cubic-bezier(.16,.88,.71,1.04), opacity .35s;
  opacity: 1;
  transform: translateY(0);
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%) scale(0.96);
}
.cookie-banner-content {
  font-size: 1.5rem;
  flex: 1 1 60%;
}
.cookie-banner-buttons {
  display: flex; flex-direction: row; gap: 18px; align-items: center;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial;
  border: none;
  border-radius: 18px;
  padding: 10px 22px;
  font-size: 1.45rem;
  margin: 0 2px;
  cursor: pointer;
  font-weight: 700;
  transition: background .19s, color .17s;
  box-shadow: 0 2px 7px 0 rgba(168,198,69,0.07);
}
.cookie-accept { background: #A8C645; color: #274156; }
.cookie-accept:hover, .cookie-accept:focus { background: #274156; color: #A8C645; }
.cookie-reject { background: #fff; color: #A8C645; border: 2px solid #A8C645; }
.cookie-reject:hover, .cookie-reject:focus { background: #A8C645; color: #fff; }
.cookie-settings { background: #274156; color: #fff; }
.cookie-settings:hover, .cookie-settings:focus { background: #A8C645; color: #274156; }
/* ==== COOKIE PREFERENCES MODAL ==== */
.cookie-modal-overlay {
  position: fixed;
  z-index: 2000;
  background: rgba(39,65,86,.36);
  top: 0; left: 0; right: 0; bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .3s;
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 10px 44px 0 rgba(168,198,69,0.14);
  padding: 36px 32px 24px 32px;
  width: 95%;
  max-width: 420px;
  display: flex; flex-direction: column; gap: 19px;
  position: relative;
  animation: cookie-modal-in .27s cubic-bezier(.51,1.64,.31,1);
  z-index: 2010;
}
@keyframes cookie-modal-in {
  0% { opacity:0; transform:translateY(32px) scale(.94); }
  100% { opacity:1; transform:translateY(0) scale(1); }
}
.cookie-modal-close {
  position: absolute;
  top: 9px; right: 15px;
  background: none;
  border: none;
  color: #A8C645;
  font-size: 2.1rem;
  cursor: pointer;
  transition: color .18s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #274156;
}
.cookie-modal h3 { color: #A8C645; margin-bottom: 3px; font-size: 2.1rem; }
.cookie-modal label {
  display: flex;
  align-items: center;
  font-size: 1.45rem;
  gap: 13px;
  font-family: 'Open Sans';
  margin-bottom: 8px;
}
.cookie-modal input[type="checkbox"] {
  accent-color: #A8C645;
  width: 21px;
  height: 21px;
}
.category-description { color: #274156; font-size: 1.3rem; margin-left: 32px; margin-bottom: 8px; }
.cookie-modal-actions {
  display: flex; flex-direction: row; gap: 15px; margin-top: 8px;
}
/* === RESPONSIVE: MOBILE FIRST === */
@media (max-width: 992px) {
  h1 { font-size: 3.2rem; }
  h2 { font-size: 2.4rem; }
  .main-nav ul { gap: 16px; }
  .container { padding: 0 12px; }
  .hero { min-height: 320px; padding: 32px 10px 32px 10px; }
  .footer-navigation { gap: 20px; }
}
@media (max-width: 768px) {
  .main-nav ul { display: none; }
  .mobile-menu-toggle { display: flex; }
  .main-nav { padding: 7px 0; }
  .section, section {
    margin-bottom: 40px;
    padding: 26px 6px;
  }
  .container { padding: 0 5px; }
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.6rem; }
  .hero { min-height: 180px; padding: 20px 4px; }
  .features .feature-grid, .services-overview .service-cards, .content-wrapper {
    gap: 14px;
    flex-direction: column;
    align-items: stretch;
  }
  .case-studies .case-summary {
    padding: 13px 7px;
  }
  .service-card {
    min-width: 0; max-width: 100%;
    padding: 14px 7px 16px 7px;
  }
  .features .feature-grid li {
    min-width: 0; max-width: 100%;
    padding: 14px 9px;
  }
  .service-item, .faq-list li {
    padding: 13px 6px;
  }
  .testimonials .testimonial-card {
    padding: 15px 8px;
  }
  .footer-navigation { flex-direction: column; gap: 8px; align-items: flex-start; }
  .footer-navigation nav { flex-direction: column; gap: 7px; }
  .footer-links { gap: 8px; }
  .cookie-banner {
    flex-direction: column;
    gap: 8px;
    padding: 13px 3px;
    align-items: flex-start;
  }
  .cookie-banner-content { font-size: 1.3rem; }
  .cookie-banner-buttons { flex-direction: column; gap: 7px; }
}
/* Accessibility: hide visually but accessible to screen readers */
.sr-only {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
/* ========== GENERAL UTILS ========== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mt-20 { margin-top: 20px !important; }
.mb-20 { margin-bottom: 20px !important; }
.gap-24 { gap: 24px !important; }
.rounded { border-radius: 14px !important; }
.shadow {
  box-shadow: 0 4px 18px 0 rgba(168,198,69,0.10) !important;
}
/* Animations for links and micro-interactions */
a, .button-primary, .button-secondary, .service-card, .features .feature-grid li, .faq-list li, .testimonial-card, .post-teasers article {
  transition: box-shadow .18s, color .18s, background .18s, transform .18s;
}
/* ===== VIBRANT/ENERGETIC EMBELLISHMENTS ===== */
.features .feature-grid li:before, .service-card:before {
  content: '';
  display: block;
  position: absolute;
  top: -18px; right: -18px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: #A8C645;
  opacity: 0.18;
  z-index: 0;
}
.service-card:before { right: -14px; top: -14px; }
.features .feature-grid li:before { right: -16px; top: -15px; }
/* Hide on smaller screens to avoid clutter */
@media (max-width: 600px) {
  .features .feature-grid li:before, .service-card:before { display: none; }
}
