/* CSS RESET & BASELINE */
html {
  box-sizing: border-box;
  font-size: 16px;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  background: #F3F4F6;
  color: #39382E;
  font-family: 'Source Sans Pro', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #49735A;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px solid #43816a;
  outline-offset: 2px;
}
a:hover {
  color: #15315B;
  text-decoration: underline;
}
ul, ol {
  list-style-position: inside;
  padding-left: 0;
  margin-left: 0;
}
strong, b {
  font-weight: 700;
}

/* TYPOGRAPHY */
h1, .h1 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: #15315B;
  margin-bottom: 18px;
  line-height: 1.18;
}
h2, .h2 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: #3F4D30;
  margin-bottom: 14px;
}
h3, .h3 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: #49735A;
  margin-bottom: 10px;
}
p {
  margin-bottom: 18px;
  font-size: 1.04rem;
}

/* CONTAINER UTILITY */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* NATURE ORGANIC PALETTE (earth tones, organic shapes, textures, green accents) */
:root {
  --primary: #15315B;
  --secondary: #6FA5C7;
  --accent: #97B19A;
  --earth-light: #F3F4F6;
  --earth-bg: #E9E5DA;
  --deep-green: #49735A;
  --sand: #F6F5EF;
  --brown: #B1A184;
  --dark-text: #262417;
  --gray-text: #6c6654;
}

/* HEADER & NAVIGATION */
header {
  background: var(--earth-bg);
  box-shadow: 0 2px 8px rgba(73, 115, 90, 0.06);
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  padding-top: 8px;
  position: relative;
  z-index: 10;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-top: 10px;
  padding-bottom: 10px;
}
header img {
  height: 44px;
  width: auto;
  margin-right: 16px;
}
nav {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
nav a {
  color: #49735A;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  padding: 8px 14px;
  border-radius: 100px;
  transition: background 0.2s, color 0.2s;
  letter-spacing: 0.008em;
}
nav a:hover, nav a:focus {
  background: var(--accent);
  color: var(--primary);
  text-decoration: none;
}
.cta.primary {
  padding: 10px 28px;
  background: linear-gradient(93deg, #49735A 80%, #A7C79A 100%);
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: 50px 25px 45px 20px/35px 50px 25px 45px; /* organic shape */
  box-shadow: 0 4px 16px rgba(73,115,90,0.16);
  transition: background 0.18s, box-shadow 0.18s, transform 0.13s;
  cursor: pointer;
  margin-left: 10px;
  text-shadow: 0 1px 3px rgba(60,90,50,0.07);
}
.cta.primary:hover, .cta.primary:focus {
  background: linear-gradient(85deg, #4E906A 80%, #91b154 100%);
  box-shadow: 0 6px 22px rgba(73,115,90,0.21);
  transform: translateY(-2px) scale(1.035);
  color: #fff;
}
.cta {
  display: inline-block;
  padding: 10px 22px;
  background: var(--deep-green);
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  border: none;
  border-radius: 36px 28px 42px 18px/42px 20px 44px 24px;
  margin-top: 10px;
  margin-left: 2px;
  transition: background 0.18s, box-shadow 0.18s, transform 0.15s;
  box-shadow: 0 2px 12px rgba(151,177,154, 0.10);
}
.cta:hover, .cta:focus {
  background: #5CA073;
  color: #fff;
  box-shadow: 0 4px 20px rgba(73,115,90,0.10);
  transform: scale(1.04);
}

/* Hamburger mobile menu */
.mobile-menu-toggle {
  background: #49735A;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  border-radius: 16px;
  padding: 4px 14px 2px 14px;
  cursor: pointer;
  display: none;
  align-self: center;
  transition: background 0.18s, transform 0.14s;
  z-index: 300;
  margin-left: 10px;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #3F4D30;
}

@media (max-width: 992px) {
  header .cta.primary {
    padding: 8px 20px;
    font-size: 1rem;
  }
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(120deg, rgba(151,177,154,0.96), rgba(243,244,246,0.96) 80%);
  transform: translateX(-100vw);
  transition: transform 0.34s cubic-bezier(.61,.39,.37,.96);
  z-index: 4000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.6rem;
  color: #49735A;
  margin: 24px 0 16px 28px;
  cursor: pointer;
  align-self: flex-start;
  transition: color 0.21s;
  z-index: 5001;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #15315B;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 24px;
  padding-left: 36px;
  padding-top: 18px;
}
.mobile-nav a {
  color: #15315B;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  padding: 12px 6px;
  border-radius: 16px;
  transition: background 0.14s, color 0.14s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #5CA073;
  color: #fff;
}

@media (max-width: 992px) {
  nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 993px) {
  .mobile-menu {
    display: none !important;
  }
}


/* HERO Section */
.hero-section {
  background: linear-gradient(90deg, #f6f5ef 80%, #e9e5da 100%);
  margin-bottom: 0 !important;
  min-height: 340px;
  border-radius: 0 0 70px 90px/0 0 120px 80px;
  box-shadow: 0 2px 30px rgba(97, 133, 82, 0.07), 0 1px 0 #f3f4f6;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 56px;
  padding-bottom: 54px;
}
.hero-section .container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
}
.hero-section .content-wrapper {
  max-width: 620px;
  background: rgba(240,243,241,0.87);
  border-radius: 60px 32px 68px 14px/40px 68px 24px 76px;
  box-shadow: 0 2px 14px rgba(174, 170, 122, 0.04);
  padding: 36px 28px;
  min-width: 0;
}
.hero-section h1 {
  color: #15315B;
  font-size: 2.45rem;
  margin-bottom: 12px;
}
.hero-section p {
  color: #49735A;
  font-size: 1.13rem;
  font-weight: 400;
  margin-bottom: 26px;
}

/* FEATURES / SERVICE LISTS */
.features-section, .services-section, .about-section, .philosophy-section, .numbers-section, .reports-section, .contact-section, .thank-you-section, .next-steps-section, .faq-section, .about-preview {
  background: var(--earth-bg);
  border-radius: 40px 80px 50px 70px/100px 50px 70px 35px;
  margin-bottom: 60px;
  box-shadow: 0 6px 16px rgba(65, 99, 72, 0.08);
  padding: 44px 0 40px 0;
}
.features-section .content-wrapper, 
.about-section .content-wrapper,
.philosophy-section .content-wrapper,
.numbers-section .content-wrapper,
.reports-section .content-wrapper,
.contact-section .content-wrapper,
.thank-you-section .content-wrapper,
.next-steps-section .content-wrapper,
.faq-section .content-wrapper,
.about-preview .content-wrapper
  {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding-right: 20px;
    padding-left: 20px;
    padding-top: 4px;
    padding-bottom: 4px;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 22px;
  margin-bottom: 10px;
}
.feature-grid li {
  background: #fff;
  border-radius: 42px 18px 38px 22px/30px 36px 56px 30px;
  box-shadow: 0 2px 18px rgba(97, 133, 82, 0.11);
  padding: 28px 28px 24px 28px;
  min-width: 220px;
  flex: 1 1 235px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
  border: 1.5px solid #d8e5db;
  position: relative;
  transition: box-shadow 0.21s, transform 0.14s;
}
.feature-grid li:hover, .feature-grid li:focus-within {
  box-shadow: 0 8px 28px rgba(97, 133, 82, 0.16);
  transform: translateY(-4px) scale(1.025);
}
.feature-grid img {
  height: 42px;
  width: 42px;
  object-fit: contain;
  margin-bottom: 6px;
}
.feature-grid h3 {
  color: #3E6640;
  margin-bottom: 4px;
  font-size: 1.125rem;
}
.feature-grid p {
  color: #39382E;
  font-size: 1rem;
}

/* SERVICES */
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-left: 0;
}
.service-list li {
  background: #fff;
  border-radius: 28px 44px 40px 22px/44px 30px 28px 46px;
  box-shadow: 0 2px 12px rgba(118, 133, 101, 0.13);
  padding: 32px 28px 18px 28px;
  min-width: 220px;
  flex: 1 1 300px;
  margin-bottom: 20px;
  border: 1.5px solid #e1e8db;
  transition: box-shadow 0.18s, transform 0.13s;
}
.service-list li:hover, .service-list li:focus-within {
  box-shadow: 0 8px 28px rgba(151, 177, 154, 0.19);
  transform: translateY(-4px) scale(1.018);
}
.service-list h3 {
  color: #49735A;
  margin-bottom: 7px;
}
.service-list p {
  color: #39382E;
}

/* FAQ ACCORDION */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-top: 10px;
}
.faq-item {
  background: #fff;
  border-radius: 24px 32px 26px 32px/22px 28px 32px 20px;
  box-shadow: 0 1px 9px rgba(129, 153, 141, 0.06);
  padding: 20px 24px 18px 24px;
  flex: 1 1 200px;
  border-left: 4px solid #49735A;
  transition: box-shadow 0.16s, border-color 0.13s;
}
.faq-item h3 {
  cursor: pointer;
  margin-bottom: 6px;
}
.faq-item:hover, .faq-item:focus-within {
  box-shadow: 0 6px 20px rgba(73,115,90,0.09);
  border-left: 4px solid #15315B;
}

/* TESTIMONIAL CARDS */
.testimonials-section {
  background: var(--sand);
  border-radius: 32px 44px 46px 28px/44px 38px 30px 38px;
  margin-bottom: 50px;
  padding: 48px 0 40px 0;
  box-shadow: 0 2px 15px rgba(119,151,110, 0.11);
}
.testimonials-section .container {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.testimonials-section h2 {
  margin-bottom: 18px;
}
.testimonials-section .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
}
.testimonial-card {
  background: #fff;
  color: #39382E;
  border-radius: 44px 26px 33px 18px/38px 30px 28px 36px;
  box-shadow: 0 4px 22px rgba(168, 180, 154, 0.16);
  padding: 20px 30px 18px 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  min-width: 240px;
  max-width: 360px;
  flex: 1 1 270px;
  border: 1.5px solid #e1e4df;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, border-color 0.15s, transform 0.13s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 6px 32px rgba(151, 177, 154, 0.20);
  border-color: #cfdccf;
  transform: translateY(-3px) scale(1.025);
}
.testimonial-card p {
  color: #262417;
  font-size: 1.03rem;
  font-style: italic;
  margin-bottom: 10px;
}
.testimonial-meta {
  color: #49735A;
  font-size: 0.98rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  margin-top: 3px;
}

/* CTA DARK VARIANT */
.cta-section.dark {
  background: #49735A;
  color: #fff;
  box-shadow: 0 5px 28px rgba(89, 133, 74, 0.09);
}
.cta-section.dark h2, .cta-section.dark p {
  color: #fff;
}
.cta-section.dark .cta.primary {
  background: #15315B;
  color: #fff;
}
.cta-section.dark .cta.primary:hover {
  background: #39567B;
  color: #fff;
}

/* REPORTS SECTION */
.reports-section ul {
  padding-left: 16px;
  margin-bottom: 18px;
  color: #3B4430;
}
.reports-section li {
  margin-bottom: 14px;
  font-size: 1.07rem;
}
.download-link {
  color: #49735A;
  font-weight: 600;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  padding-left: 8px;
  text-decoration: underline;
  transition: color 0.15s;
}
.download-link:hover, .download-link:focus {
  color: #15315B;
  text-decoration: underline;
}

/* LEGAL SECTIONS */
.legal-section {
  background: #f3f6ed;
  border-radius: 28px 38px 24px 30px/54px 44px 34px 48px;
  margin-bottom: 60px;
  box-shadow: 0 2px 10px rgba(189, 189, 158, 0.08);
  padding: 44px 0 40px 0;
}
.legal-section .container {
  padding-left: 22px;
  padding-right: 22px;
}
.legal-section h1, .legal-section h2, .legal-section h3 {
  color: #235134;
}

/* FOOTER */
footer {
  background: #15315B;
  color: #F3F4F6;
  margin-top: 40px;
  border-top-left-radius: 38px;
  border-top-right-radius: 38px;
  box-shadow: 0 -6px 22px rgba(54, 58, 33, 0.11);
  padding-top: 38px;
  padding-bottom: 22px;
  font-size: 0.99rem;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-brand img {
  height: 44px;
  width: auto;
  margin-bottom: 16px;
}
.footer-info {
  min-width: 220px;
  max-width: 290px;
  flex: 1 0 210px;
}
.footer-info .text-section {
  color: #fff;
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 7px;
}
.footer-info a {
  color: #c6e0cf;
  text-decoration: underline;
  transition: color 0.14s;
}
.footer-info a:hover {
  color: #b3d5bb;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 7px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #a1e3b1;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  padding: 5px 0 4px 0;
  margin-right: 0;
  border-radius: 14px;
  transition: background 0.13s, color 0.13s;
  width: fit-content;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #49735A;
  color: #fff;
}
.legal-links {
  width: 100%;
  margin-top: 14px;
  color: #dfecd9;
  font-size: 0.98rem;
}
.legal-links a {
  color: #e4f7e2;
  font-size: 0.99rem;
  text-decoration: underline;
  margin: 0 6px;
}
.legal-links a:hover {
  color: #75dc8d;
}

/* CARD/UTILITY SPACING */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.card {
  background: #fff;
  border-radius: 24px 28px 22px 24px/28px 30px 24px 19px;
  box-shadow: 0 3px 14px rgba(97, 133, 82, 0.08);
  margin-bottom: 20px;
  position: relative;
  padding: 22px 26px;
  transition: box-shadow 0.18s, transform 0.11s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 7px 30px rgba(142,189,144,0.16);
  transform: translateY(-2px) scale(1.017);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* BUTTONS GENERAL */
button, .button {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  border: none;
  border-radius: 28px;
  padding: 10px 22px;
  background: #49735A;
  color: #fff;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.18s, box-shadow 0.12s, transform 0.09s;
}
button:hover, .button:hover, button:focus, .button:focus {
  background: #15315B;
  color: #fff;
  outline: none;
  box-shadow: 0 4px 14px rgba(73, 115, 90, 0.10);
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  background: linear-gradient(91deg, #e9e5da 70%, #bfcdb8 100%);
  color: #39382E;
  box-shadow: 0 -2px 30px rgba(86,120,83,0.11);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 22px 36px 22px 28px;
  gap: 28px;
  z-index: 9999;
  min-height: 70px;
  font-size: 1rem;
  border-top-left-radius: 26px;
  border-top-right-radius: 32px;
  animation: cookieBannerIn .65s cubic-bezier(.32,.66,.18,1.07);
}
@keyframes cookieBannerIn {
  from {
    transform: translateY(120px);
    opacity: 0;
  }
  to {
    transform: none;
    opacity: 1;
  }
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.cookie-banner button {
  background: #49735A;
  color: #fff;
  padding: 10px 18px;
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 24px;
  border: none;
  box-shadow: 0 1px 6px rgba(73,115,90,0.07);
  transition: background 0.15s;
}
.cookie-banner button:hover,
.cookie-banner button:focus {
  background: #15315B;
}
/* Cookie Settings Modal */
.cookie-modal {
  display: none;
  position: fixed;
  left: 50%;
  top: 50%;
  min-width: 320px;
  max-width: 94vw;
  width: 420px;
  background: #f8f9f3;
  color: #15315B;
  border-radius: 28px 36px 50px 18px/36px 22px 44px 38px;
  padding: 32px 24px 24px 24px;
  box-shadow: 0 12px 44px rgba(151,177,154,0.22);
  transform: translate(-50%, -175px) scale(0.93);
  opacity: 0;
  z-index: 10001;
  transition: opacity 0.24s, transform 0.34s cubic-bezier(.27,.94,.49,1.19);
}
.cookie-modal.open {
  display: block;
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.cookie-modal h2 {
  color: #49735A;
  font-size: 1.25rem;
  margin-bottom: 18px;
}
.cookie-modal .category {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 1.07rem;
  margin-bottom: 18px;
}
.cookie-modal label {
  font-size: 1.06rem;
  font-weight: 500;
  color: #15315B;
}
.cookie-modal input[type="checkbox"] {
  accent-color: #49735A;
  width: 20px;
  height: 20px;
  border-radius: 7px;
}
.cookie-modal .category.essential label {
  color: #49735A;
}
.cookie-modal .category.essential input[type="checkbox"] {
  display: none;
}
.cookie-modal .modal-buttons {
  display: flex;
  gap: 13px;
  margin-top: 17px;
}
.cookie-modal button {
  background: #49735A;
  color: #fff;
  padding: 10px 16px;
  border-radius: 20px;
  border: none;
  font-weight: 600;
  font-size: 0.97rem;
}
.cookie-modal button:hover, .cookie-modal button:focus {
  background: #15315B;
}
.cookie-modal .close-modal {
  position: absolute;
  right: 22px;
  top: 20px;
  background: none;
  color: #49735A;
  font-size: 1.8rem;
  padding: 0;
  line-height: 1;
  border: none;
  cursor: pointer;
  transition: color 0.14s;
}
.cookie-modal .close-modal:hover, .cookie-modal .close-modal:focus {
  color: #15315B;
}

/* --- RESPONSIVENESS --- */
@media (max-width: 1020px) {
  .feature-grid, .service-list, .testimonials-section .content-wrapper {
    flex-direction: column;
    gap: 20px;
  }
  .feature-grid li, .service-list li, .testimonial-card {
    max-width: 99vw;
    min-width: 0;
  }
  .footer-nav {
    flex-direction: column;
    gap: 7px;
  }
  .container {
    max-width: 98vw;
  }
}
@media (max-width: 768px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
  header .container {
    flex-direction: row;
    gap: 14px;
    flex-wrap: wrap;
    padding: 8px 0 0 0;
  }
  .hero-section {
    min-height: unset;
    border-radius: 0 0 45px 60px/0 0 80px 35px;
    padding-top: 26px;
    padding-bottom: 29px;
  }
  .hero-section .container {
    align-items: flex-start;
  }
  .hero-section .content-wrapper {
    padding: 22px 14px;
    border-radius: 34px 16px 42px 7px/21px 44px 9px 58px;
  }
  .features-section,
  .services-section,
  .about-section,
  .numbers-section,
  .reports-section,
  .contact-section,
  .thank-you-section,
  .next-steps-section,
  .legal-section,
  .faq-section,
  .about-preview {
    padding: 30px 0 18px 0;
    border-radius: 22px 22px 28px 10px/27px 20px 27px 17px;
  }
  .feature-grid,
  .service-list,
  .testimonials-section .content-wrapper {
    flex-direction: column;
    gap: 14px;
  }
  .feature-grid li,
  .service-list li,
  .testimonial-card {
    padding: 16px 12px 13px 12px;
    border-radius: 18px 14px 21px 7px/19px 16px 22px 9px;
    min-width: 0;
    width: 100%;
    max-width: 99vw;
  }
  .legal-links {
    font-size: 0.95rem;
    margin-top: 10px;
  }
  footer .container {
    flex-direction: column;
    gap: 20px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 17px;
  }
  .content-grid {
    flex-direction: column;
    gap: 13px;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 13px;
    padding: 18px 10px 18px 12px;
    font-size: 0.98rem;
    min-height: 50px;
  }
  .cookie-banner .cookie-buttons {
    justify-content: flex-start;
    gap: 10px;
    flex-wrap: wrap;
  }
  .cookie-modal {
    padding: 16px 6vw 14px 6vw;
    min-width: 0;
    max-width: 98vw;
    width: 96vw;
    font-size: 0.97rem;
  }
}

/* MICRO-ANIMATIONS / MISC */
.cta.primary, .cta, button, .button, .feature-grid li, .service-list li, .testimonial-card, .card {
  transition: background 0.16s, box-shadow 0.18s, transform 0.11s;
}
[tabindex]:not([tabindex="-1"]):focus {
  outline: 2px solid #b2e39e;
  outline-offset: 2px;
}

::-webkit-scrollbar {
  width: 10px;
  background: #e2e8e6;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb {
  background: #A7C79A;
  border-radius: 10px;
}

/* END OF STYLE.CSS */
