/* =========================
   CSS RESET & NORMALIZE
   ========================= */
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, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  line-height: 1.5;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  height: 100%;
}
body {
  min-height: 100vh;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #233311;
  background-color: #f9f8f4;
  font-size: 1rem;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}
img, picture, video, canvas, svg {
  display: inline-block;
  max-width: 100%;
  height: auto;
}
a {
  color: #3a5d24;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #76954f;
}
ul, ol {
  margin-left: 1.25em;
  margin-bottom: 1.5em;
}
ul li, ol li {
  margin-bottom: 0.75em;
}
button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
hr {
  border: none;
  border-top: 1px solid #DDDDDD;
  margin: 32px 0;
}

/* ======= TYPOGRAPHY ======= */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', Georgia, 'Times New Roman', Times, serif;
  font-weight: 700;
  color: #233311;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
h3 {
  font-size: 1.375rem;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
h4 {
  font-size: 1.125rem;
}
.subheadline {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #4a6041;
  font-size: 1.125rem;
  margin-bottom: 16px;
  font-weight: 500;
  letter-spacing: 0.01em;
}
p {
  margin-bottom: 16px;
  font-size: 1.025rem;
  color: #3b392d;
}
strong {
  color: #2a3720;
  font-weight: bold;
}
.text-section {
  max-width: 680px;
  margin: 0 auto;
}

/* ========== GENERAL LAYOUT ========== */
.container {
  width: 100%;
  max-width: 1140px;
  padding-left: 20px;
  padding-right: 20px;
  margin: 0 auto;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (min-width: 1024px) {
  .section {
    padding: 56px 0px;
    margin-bottom: 72px;
  }
}

/* ========== HEADER & NAVIGATION ========== */
header {
  background: #e9efea url('../assets/header-bg-texture.png') repeat top left;
  box-shadow: 0 4px 24px 0 rgba(51,59,33,0.03);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
  gap: 16px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #2a3720;
  padding: 6px 10px;
  border-radius: 6px;
  transition: background 0.18s, color 0.18s;
  position: relative;
}
.main-nav a.button-primary {
  margin-left: 14px;
}
.main-nav a:not(.button-primary):hover,
.main-nav a:not(.button-primary):focus {
  background: #d3dec7;
  color: #264624;
}
.main-nav a.button-primary {
  background: #92be90;
  color: #233311;
  font-weight: 600;
  border-radius: 28px;
  padding: 9px 24px;
  transition: background 0.2s, color 0.2s;
  box-shadow: 0 2px 8px 0 rgba(60,73,51,0.07);
}
.main-nav a.button-primary:hover,
.main-nav a.button-primary:focus {
  background: #76b85a;
  color: #fff;
}
header img {
  height: 44px;
  width: auto;
}
/* ========== MOBILE NAVIGATION ========== */
.mobile-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  background: #92be90;
  color: #233311;
  border: none;
  border-radius: 50%;
  padding: 7px 14px;
  margin-left: 12px;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  height: 42px;
  width: 42px;
  box-shadow: 0 1px 6px 0 rgba(51,59,33,0.03);
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #233311;
  color: #eaf4e5;
}
@media (min-width: 900px) {
  .mobile-menu-toggle {
    display: none;
  }
}
@media (max-width: 899px) {
  .main-nav {
    display: none;
  }
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(237,243,220,0.97);
  z-index: 1500;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  transform: translateX(-105vw);
  transition: transform 0.35s cubic-bezier(.5,.66,.5,1);
  box-shadow: 0 4px 32px 0 rgba(32,53,33,0.13);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2rem;
  margin: 22px 22px 0 0;
  background: #233311;
  color: #eaf4e5;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s, color 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #acc7a0;
  color: #233311;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  align-items: flex-start;
  padding-left: 32px;
  font-size: 1.25rem;
}
.mobile-nav a {
  padding: 14px 10px 14px 0;
  color: #333c22;
  border-radius: 6px;
  width: 100%;
  transition: background 0.19s, color 0.19s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #c7e4c1;
  color: #233311;
}
@media (min-width: 900px) {
  .mobile-menu {
    display: none !important;
  }
}

/* ========== HERO & SECTIONS ========== */
.hero-section {
  background: #eaf4e5 url('../assets/hero-bg-texture.png') repeat top left;
  border-radius: 0 0 90px 0/0 0 50px 0;
  min-height: 340px;
  display: flex;
  align-items: center;
  margin-bottom: 60px;
}
.hero-section .container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 40px;
  padding-bottom: 40px;
}
.hero-section .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  text-align: left;
}
.hero-section h1 {
  color: #23395d;
  font-size: 2.25rem;
  line-height: 1.15;
  margin-bottom: 6px;
  text-shadow: 0 4px 20px rgba(34,49,93,0.04);
}
.hero-section .subheadline {
  color: #58753a;
  font-size: 1.125rem;
}
.hero-section .button-primary {
  margin-top: 8px;
}
@media (max-width: 768px) {
  .hero-section {
    min-height: 200px;
    border-radius: 0 0 40px 0/0 0 18px 0;
    padding-top: 16px;
    margin-bottom: 44px;
  }
  .hero-section .content-wrapper {
    align-items: flex-start;
  }
  h1 {
    font-size: 1.5rem;
  }
}

/* ========= FEATURE GRIDS (flexbox only) ========= */
.feature-grid, .usp-grid, .testimonial-list, .testimonial-carousel, .timeline {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
  justify-content: space-between;
}
.feature {
  background: #f5f9f4;
  border-radius: 24px;
  box-shadow: 0 2px 12px 0 rgba(91,122,89,0.06);
  padding: 28px 22px 18px 22px;
  flex: 1 1 260px;
  min-width: 240px;
  max-width: 340px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  transition: transform 0.18s, box-shadow 0.18s;
  border: 1px solid #e3e7e1;
}
.feature img {
  height: 40px;
  width: 40px;
  margin-bottom: 9px;
}
.feature:hover, .feature:focus {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 8px 32px 0 rgba(65,94,70,0.13);
  border-color: #b0c6b3;
}
/* USP-Grid About */
.usp-grid > div {
  background: #eff5ea;
  border-radius: 20px;
  padding: 20px 18px 18px 18px;
  flex: 1 1 220px;
  min-width: 180px;
  margin-bottom: 20px;
  box-shadow: 0 1px 8px 0 rgba(71, 86, 60, 0.08);
  border: 1px solid #dbe3d3;
  transition: box-shadow 0.18s, border-color 0.18s;
}
.usp-grid > div:hover {
  box-shadow: 0 6px 20px 0 rgba(71, 86, 60, 0.13);
  border-color: #b0c6b3;
}

@media (max-width: 900px) {
  .feature-grid, .usp-grid, .testimonial-list, .timeline {
    flex-direction: column;
    gap: 18px;
  }
  .feature, .usp-grid > div {
    max-width: 100%;
    min-width: 0;
  }
}
/* Timeline (About) */
.timeline {
  flex-direction: column;
  gap: 2px;
  margin-top: 24px;
  background: #f7f8ed;
  border-radius: 20px;
  padding: 20px 26px;
}
.timeline h3 {
  margin-bottom: 10px;
}
.timeline ul {
  margin-bottom: 0;
  margin-left: 1.1em;
}
.timeline li {
  margin-bottom: 10px;
}

/* ======= TESTIMONIALS ======= */
.testimonials-section {
  background: #eef6ed;
  border-radius: 24px;
  margin-bottom: 60px;
  padding: 40px 16px 48px 16px;
}
.testimonials-section h2 {
  color: #3d533a;
}
.testimonial-card {
  background: #ffffff;
  color: #293621;
  border-radius: 18px;
  box-shadow: 0 1px 20px 0 rgba(65,94,70,0.08);
  border: 1px solid #d7e8ce;
  padding: 20px 28px 18px 28px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  min-width: 220px;
  max-width: 380px;
  flex: 1 1 260px;
  transition: box-shadow 0.17s;
}
.testimonial-card p {
  color: #233311;
  font-size: 1.063rem;
  font-style: italic;
}
.testimonial-card strong {
  font-size: 0.95rem;
  color: #48601e;
  letter-spacing: 0.01em;
}
.testimonial-list, .testimonial-carousel {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
@media (max-width: 900px) {
  .testimonials-section {
    border-radius: 10px;
    padding: 24px 8px 28px 8px;
  }
  .testimonial-card {
    padding: 14px 14px 10px 14px;
    max-width: 100%;
  }
}

/* ======= CTA SECTION ======= */
.cta-section {
  background: #e6ffe9;
  border-radius: 32px;
  padding: 38px 16px;
  margin-bottom: 60px;
  display: flex;
  align-items: center;
}
.cta-section .content-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-section a.button-primary {
  font-size: 1.125rem;
  font-weight: 700;
  background: #4c8644;
  color: #fff;
  box-shadow: 0 2px 8px 0 rgba(54,74,44,0.09);
  border-radius: 32px;
  padding: 17px 38px;
  transition: background 0.2s, color 0.2s;
}
.cta-section a.button-primary:hover, .cta-section a.button-primary:focus {
  background: #233311;
  color: #eaf4e5;
}
@media (max-width: 700px) {
  .cta-section {
    padding: 20px 6px;
    border-radius: 10px;
  }
  .cta-section .content-wrapper {
    flex-direction: column;
  }
}

/* ======= CARDS & CONTAINERS ======= */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #f7faf2;
  border-radius: 20px;
  box-shadow: 0 2px 12px 0 rgba(76,118,73,0.06);
  padding: 22px 20px;
  margin-bottom: 20px;
  position: relative;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
@media (max-width: 800px) {
  .content-grid {
    flex-direction: column;
    gap: 14px;
  }
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

/* ========== CONTACT/INFO BLOCKS ========== */
.contact-section {
  background: #ebf7e2;
  border-radius: 28px;
  margin-bottom: 60px;
}
.contact-section .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: stretch;
  justify-content: flex-start;
}
.contact-info-row {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}
.contact-details {
  background: #f7faef;
  border-radius: 16px;
  padding: 24px 18px 18px 18px;
  min-width: 230px;
  max-width: 380px;
  flex: 1 1 230px;
  margin-bottom: 18px;
  color: #264d38;
  font-size: 1rem;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 1px 8px 0 rgba(122,169,120,0.06);
}
.contact-details img {
  width: 18px;
  height: 18px;
  vertical-align: middle;
  margin-right: 5px;
}
.contact-short-form {
  background: #dcf6d3;
  border-radius: 16px;
  padding: 26px 22px 22px 22px;
  min-width: 200px;
  max-width: 370px;
  flex: 1 1 200px;
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 1px 8px 0 rgba(122,169,120,0.06);
}
@media (max-width: 900px) {
  .contact-info-row {
    flex-direction: column;
    gap: 12px;
  }
  .contact-section .content-wrapper {
    flex-direction: column;
  }
}

/* ========= FOOTER ========== */
footer {
  background: #f7faf2;
  margin-top: 48px;
  border-top: 1px solid #dcf6d3;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: center;
  padding: 20px 10px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  align-items: center;
  margin-bottom: 8px;
}
.footer-nav a {
  color: #556c41;
  font-size: 1rem;
  padding: 6px 6px;
  border-radius: 6px;
  transition: background 0.16s, color 0.16s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #e6ffe9;
  color: #1e2f15;
}
.footer-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: #738266;
  font-size: 0.98rem;
}
.social-links {
  display: flex;
  gap: 18px;
  margin-bottom: 6px;
}
.social-links a img {
  height: 26px;
  width: 26px;
  filter: grayscale(0.12) contrast(1.08) brightness(0.96);
  transition: filter 0.18s;
}
.social-links a:hover img,
.social-links a:focus img {
  filter: none;
  filter: drop-shadow(0 0 4px #c8e2ca);
}

/* ========== BUTTONS ========== */
.button-primary,
a.button-primary {
  display: inline-block;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  background: #92be90;
  color: #233311;
  padding: 11px 28px;
  border: none;
  border-radius: 28px;
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  margin-top: 8px;
  margin-bottom: 8px;
  box-shadow: 0 1px 6px 0 rgba(51,59,33,0.09);
  transition: background 0.19s, color 0.19s, transform 0.19s, box-shadow 0.19s;
  text-align: center;
  min-width: 135px;
}
.button-primary:hover,
a.button-primary:hover,
.button-primary:focus,
a.button-primary:focus {
  background: #4c8644;
  color: #fff;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 4px 24px 0 rgba(65,94,70,0.14);
}

.button-secondary {
  background: #eaf4e5;
  color: #233311;
  border-radius: 28px;
  padding: 10px 28px;
  font-weight: 500;
  border: 1.5px solid #96b69b;
  cursor: pointer;
  margin: 0 6px;
  transition: background 0.17s, color 0.17s, border-color 0.17s;
  min-width: 110px;
}
.button-secondary:hover, .button-secondary:focus {
  background: #d2eac6;
  color: #1e2f15;
  border-color: #4c8644;
}

.button-tertiary {
  background: transparent;
  color: #23395d;
  border-radius: 28px;
  padding: 10px 22px;
  font-weight: 500;
  border: 1.5px solid #aec6cf;
  cursor: pointer;
  margin: 0 6px;
  transition: background 0.18s, color 0.18s, border-color 0.18s;
  min-width: 110px;
}
.button-tertiary:hover, .button-tertiary:focus {
  background: #aec6cf;
  color: #233311;
  border-color: #233311;
}

/* ============= MAP SECTION ============= */
.map-section {
  background: #f5fff8;
  border-radius: 22px;
  margin-bottom: 60px;
  padding: 32px 16px;
}
.map-section .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ============= LEGAL / THANK YOU ============= */
.legal-section {
  background: #f6f8f1;
  border-radius: 18px;
  padding: 36px 20px;
  margin-bottom: 60px;
}
.thank-you-section {
  background: #eaf4e5;
  border-radius: 18px;
  padding: 60px 24px;
  margin-bottom: 60px;
  text-align: center;
}

/* ========== COOKIE BANNER & MODALS ========== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100vw;
  background: #ffffff;
  box-shadow: 0 -4px 24px 0 rgba(44,54,33, 0.08);
  border-top: 2px solid #b3d7a7;
  z-index: 2000;
  padding: 22px 10px 22px 10px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  justify-content: center;
  animation: banner-slide-in 0.44s cubic-bezier(.45,.99,.53,1);
}
@keyframes banner-slide-in {
  from {transform: translateY(80px);opacity: 0;}
  to {transform: translateY(0);opacity: 1;}
}
.cookie-banner p {
  color: #233311;
  flex: 1 1 220px;
  font-size: 1rem;
  margin-bottom: 0;
}
.cookie-banner .button-primary,
.cookie-banner .button-secondary,
.cookie-banner .button-tertiary {
  margin-bottom: 0;
}
.cookie-banner .button-primary {
  background: #76b85a;
  color: #fff;
  font-weight: 600;
  padding: 10px 24px;
}
.cookie-banner .button-primary:hover, .cookie-banner .button-primary:focus {
  background: #233311;
  color: #d2eac6;
}
.cookie-banner .button-secondary {
  border-color: #aec6cf;
  background: #f2f8ec;
  color: #233311;
}
.cookie-banner .button-secondary:hover, .cookie-banner .button-secondary:focus {
  background: #aec6cf;
  color: #233311;
}
.cookie-banner .button-tertiary {
  color: #23395d;
  border-color: #23395d;
  background: transparent;
}
.cookie-banner .button-tertiary:hover, .cookie-banner .button-tertiary:focus {
  background: #23395d;
  color: #fff;
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(65,94,70,0.32);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fade-in 0.23s cubic-bezier(.45,.99,.53,1);
}
@keyframes fade-in {
  from {opacity: 0;}
  to {opacity: 1;}
}
.cookie-modal {
  background: #ffffff;
  border-radius: 24px;
  min-width: 320px;
  max-width: 98vw;
  box-shadow: 0 4px 44px 0 rgba(44,59,33,0.14);
  padding: 34px 32px 22px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  animation: modal-in 0.33s cubic-bezier(.45,.98,.53,1);
}
@keyframes modal-in {
  from {transform: translateY(60px);opacity: 0;}
  to {transform: translateY(0);opacity: 1;}
}
.cookie-modal h2 {
  font-size: 1.32rem;
  margin-bottom: 10px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid #eaf4e5;
}
.cookie-modal .cookie-toggle {
  margin-left: auto;
}
.cookie-modal .button-primary,
.cookie-modal .button-secondary {
  margin-top: 10px;
}
.cookie-modal-close {
  position: absolute;
  top: 8px;
  right: 14px;
  background: #233311;
  color: #eaf4e5;
  border-radius: 50%;
  font-size: 1.3rem;
  padding: 3px 8px;
  border: none;
  transition: background 0.16s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #acc7a0;
  color: #233311;
}

.cookie-toggle input[type="checkbox"] {
  accent-color: #4c8644;
  width: 22px;
  height: 22px;
  margin: 0 6px 0 0;
}

.cookie-category label {
  font-size: 1rem;
  color: #233311;
  font-weight: 500;
}
.cookie-category small {
  color: #84956b;
  font-size: 0.98rem;
}

/* =========== FEATURE ITEM ============ */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

/* ====== EVENT CALENDAR PREVIEW (Events) ====== */
.event-calendar-preview {
  background: #f2f9ea;
  border-radius: 14px;
  padding: 18px 14px 4px 18px;
  font-size: 1.01rem;
  box-shadow: 0 1px 8px 0 rgba(71, 86, 60, 0.06);
  margin-top: 20px;
  margin-bottom: 20px;
}
.event-calendar-preview ul {
  margin-bottom: 12px;
}
.event-calendar-preview strong {
  color: #3b6a1e;
}
.event-calendar-preview a {
  font-weight: 600;
}

/* ======= RESPONSIVE ADJUSTMENTS ======= */
@media (max-width: 768px) {
  .container {
    max-width: 100vw;
    padding-left: 8px;
    padding-right: 8px;
  }
  .section, .map-section, .legal-section, .thank-you-section {
    padding-left: 6px;
    padding-right: 6px;
  }
  footer .container {
    padding: 12px 4px;
  }
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.06rem; }
  h3 { font-size: 1.01rem; }
}
@media (max-width: 500px) {
  .cookie-modal {
    padding: 20px 4vw 10px 4vw;
    min-width: unset;
    border-radius: 8px;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
    padding: 12px 2vw;
  }
}

/* ====== SCROLLBAR FOR CAROUSEL ====== */
.testimonial-carousel {
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: #aec6cf #ecf6ea;
  gap: 24px;
  padding-bottom: 2px;
}
.testimonial-carousel::-webkit-scrollbar {
  height: 8px;
  background: #ecf6ea;
}
.testimonial-carousel::-webkit-scrollbar-thumb {
  background: #aec6cf;
  border-radius: 5px;
}

/* ====== MICRO-INTERACTIONS ====== */
.feature, .usp-grid > div, .card, .testimonial-card {
  transition: transform 0.19s cubic-bezier(.6,.66,.44,1), box-shadow 0.17s, border-color 0.18s;
}
.feature:active, .usp-grid > div:active, .testimonial-card:active {
  transform: scale(0.98);
}
.button-primary:active {
  transform: scale(0.97) translateY(1px);
}

/* ~~~ ORGANIC SHAPE DECOR (optional, for major sections) ~~~ */
.hero-section, .features-section, .testimonials-section, .contact-section, .cta-section {
  position: relative;
}
.hero-section::before, .features-section::before {
  content: "";
  display: block;
  position: absolute;
  left: -64px;
  top: -55px;
  width: 120px;
  height: 80px;
  background: #e6ffe9;
  opacity: 0.20;
  border-radius: 80px 50px 80px 40px;
  z-index: 0;
  pointer-events: none;
}


/* ===== ACCESSIBILITY ENHANCEMENTS ===== */
a:focus-visible, button:focus-visible {
  outline: 2px solid #23395d;
  outline-offset: 2px;
}
.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  color: #fff;
  background: #2c4562;
  padding: 8px 16px;
  z-index: 9999;
  border-radius: 8px;
}
.skip-link:focus {
  position: static;
  width: auto;
  height: auto;
  left: auto;
  display: inline-block;
}

/* ====== END ====== */