/* =======================================================
   RESET & BASE STYLES
======================================================= */
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, footer, header, nav, section, article, aside, figure, figcaption, main {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
/* HTML5 display-role reset (for older browsers) */
article, aside, details, figcaption, figure, footer, header, main, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F1E9DB;
  color: #326B34;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #326B34;
  text-decoration: none;
  transition: color 0.2s;
  outline: none;
}
a:hover, a:focus {
  color: #52B788;
  text-decoration: underline;
}
ul, ol {
  margin-left: 24px;
  margin-bottom: 18px;
}
li {
  margin-bottom: 10px;
}
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 16px;
}
strong {
  font-weight: 700;
}

/* Typography */
h1, .hero h1, .thank-you-section h1 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 2.6rem;
  line-height: 1.1;
  color: #326B34;
  letter-spacing: -2px;
  margin-bottom: 18px;
  font-weight: 900;
  text-shadow: 0 2px 14px #f0f0e880;
}
h2 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 2rem;
  color: #326B34;
  margin-bottom: 18px;
  font-weight: 800;
  letter-spacing: -1px;
}
h3 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.25rem;
  color: #22733E;
  margin-bottom: 12px;
  font-weight: 700;
}
h4 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-top: 15px;
  margin-bottom: 10px;
}
p, blockquote, .feature-item p, .testimonial-card blockquote {
  font-size: 1rem;
  color: #326B34;
  margin-bottom: 14px;
}
blockquote {
  font-style: italic;
  color: #22733E;
  background: #FAF6EE;
  border-left: 4px solid #8DC382;
  padding: 14px 18px 14px 20px;
  border-radius: 16px 30px 16px 16px;
  margin-bottom: 10px;
  font-size: 1.11rem;
}

/* =======================================================
   HEADER & NAVIGATION
======================================================= */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 4px 18px 0 #0000000a;
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 0;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  padding: 14px 10px 14px 0;
  font-family: 'Montserrat', Arial, sans-serif;
}
.main-nav a {
  display: flex;
  align-items: center;
  font-size: 1rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 16px;
  transition: color 0.2s, background 0.2s, box-shadow 0.2s;
  background: transparent;
  color: #326B34;
}
.main-nav a:hover, .main-nav a:focus {
  background: #F6F6E5;
  color: #22733E;
  box-shadow: 0 2px 7px 0 #8DC38222;
}
.main-nav img {
  width: 42px;
  height: 42px;
  margin-right: 12px;
  padding: 4px 0;
}
.main-nav .cta-btn {
  background: #8DC382;
  color: #fff !important;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 9px 22px;
  font-size: 1.08rem;
  border-radius: 28px;
  box-shadow: 0 2px 10px #21792e10;
  font-weight: 900;
  margin-left: auto;
  margin-right: 0;
  transition: background 0.2s, transform 0.15s;
  position: relative;
}
.main-nav .cta-btn:hover, .main-nav .cta-btn:focus {
  background: #326B34;
  color: #fff;
  transform: scale(1.05) rotate(-2deg);
}

/* Hamburger menu (mobile) */
.mobile-menu-toggle {
  display: none;
  background: #326B34;
  color: #fff;
  font-size: 2rem;
  border: none;
  padding: 8px 18px;
  margin-right: 8px;
  border-radius: 12px;
  cursor: pointer;
  z-index: 22;
  box-shadow: 0 2px 7px #8DC38233;
  transition: background 0.15s, transform 0.2s;
}
.mobile-menu-toggle:active {
  background: #8DC382;
  color: #fff;
}

/* Mobile Menu Styling */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: #F1E9DBee;
  z-index: 40;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  padding-top: 16px;
  pointer-events: none;
  opacity: 0;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.78, .13, .15, .89), opacity 0.3s;
}
.mobile-menu.open {
  pointer-events: all;
  opacity: 1;
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: #326B34;
  font-size: 2.2rem;
  border: none;
  margin: 0 20px 18px 0;
  cursor: pointer;
  z-index: 41;
  transition: color 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #22733E;
}
.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 14px;
  margin-top: 1rem;
  padding-right: 38px;
}
.mobile-nav a {
  font-size: 1.12rem;
  padding: 13px 1.5rem;
  border-radius: 19px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #326B34;
  background: #fff;
  margin-bottom: 6px;
  transition: background 0.15s, color 0.15s, transform 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #8DC382;
  color: #fff;
  transform: translateX(5px);
}

@media (max-width: 1280px) {
  .container {
    max-width: 99vw;
    padding: 0 8px;
  }
}
@media (max-width: 1050px) {
  .main-nav a, .main-nav .cta-btn {
    font-size: 0.98rem;
    padding: 8px 11px;
  }
}
@media (max-width: 900px) {
  .main-nav a, .main-nav .cta-btn {
    font-size: 0.9rem;
    padding: 8px 7px;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}

/* =======================================================
   SECTIONS, CONTAINERS, SPACING  
======================================================= */
.section, .about-section, .about-team, .our-values, .features, .services-overview, .nature-experiences, .news, .events, .contact-details, .footer-info, .legal-section, .thank-you-section, .programmes, .methodik, .testimonials, .cta {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.card-container, .feature-grid, .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 16px;
}
.card, .feature-grid > li, .service-list > li {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 16px #326B3425;
  margin-bottom: 20px;
  padding: 24px 22px 28px 26px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: box-shadow 0.18s, transform 0.17s;
  min-width: 240px;
  max-width: 340px;
}
.card:hover, .feature-grid > li:hover, .service-list > li:hover {
  box-shadow: 0 8px 32px #8DC38233, 0 1.5px 2px #8DC38215;
  transform: translateY(-5px) scale(1.03) rotate(-1.5deg);
}
.feature-grid > li img {
  width: 46px; height: 46px;
  margin-bottom: 7px;
  background: #F1E9DBC0;
  border-radius: 50%;
  box-shadow: 0 2px 5px #326B3412;
}
.feature-grid > li h3 {
  margin-bottom: 10px;
  margin-top: 2px;
}
.feature-grid > li p {
  margin-bottom: 0;
}
@media (max-width: 900px) {
  .feature-grid, .service-list, .card-container {
    gap: 14px;
  }
  .card, .feature-grid > li, .service-list > li {
    min-width: 185px;
    max-width: 98vw;
    padding-left: 18px;
    padding-right: 10px;
  }
}
@media (max-width: 540px) {
  .card, .feature-grid > li, .service-list > li {
    padding: 18px 10px 18px 11px;
  }
}
.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;
}
@media (max-width: 768px) {
  .text-image-section, .content-grid {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
}

.section:last-child,
.cta:last-child,
footer {
  margin-bottom: 0;
}

/* =======================================================
   HERO SECTION STYLES
======================================================= */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44vh;
  background: linear-gradient(120deg, #8DC38218 70%, #fff 100%);
  box-shadow: 0 6px 28px #8DC38218;
  padding: 60px 0 48px;
  margin-bottom: 54px;
  position: relative;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}
.hero p, .hero .content-wrapper p {
  font-size: 1.22rem;
  color: #22733E;
  margin-bottom: 13px;
  font-family: 'Montserrat', Arial, sans-serif;
}

/* Playful blob decorative */
.hero::after {
  content: '';
  position: absolute;
  right: -80px;
  bottom: -60px;
  width: 340px;
  height: 190px;
  background: #8DC38255;
  border-radius: 52% 48% 74% 26%/43% 61% 39% 57%;
  filter: blur(4px);
  z-index: 1;
  pointer-events: none;
  animation: blobMove 7s infinite alternate ease-in-out;
}
@keyframes blobMove {
  0% { transform: scale(1) translateY(0) rotate(-120deg); }
  100% { transform: scale(1.11) translateY(30px) rotate(-103deg); }
}

/* =======================================================
   BUTTONS & CALL TO ACTION
======================================================= */
.cta-btn, .thank-you-section .cta-btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 1.18rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  background: #326B34;
  color: #fff !important;
  border: none;
  border-radius: 29px;
  box-shadow: 0 2px 22px #8DC38235;
  margin-top: 14px;
  cursor: pointer;
  transition: transform 0.17s, background 0.19s, box-shadow 0.19s;
  text-align: center;
  letter-spacing: 0.015em;
  position: relative;
}
.cta-btn:hover, .cta-btn:focus {
  background: #8DC382;
  color: #fff !important;
  transform: scale(1.06) rotate(-2deg);
  box-shadow: 0 4px 27px #326B3411, 0 1.5px 7px #8DC38235;
  text-decoration: none;
}

/* Fun micro-interaction bounce */
.cta-btn:active {
  transform: scale(0.97) rotate(2deg);
}

/* =======================================================
   FEATURES, SERVICES, ETC.
======================================================= */
.features,
.nature-experiences,
.our-values,
.methodik,
.services-overview,
.programmes
{
  background: #fff;
  border-radius: 29px 29px 40px 40px;
  box-shadow: 0 4px 22px #8DC38210;
}
.features .feature-grid, .nature-experiences .feature-grid,
.our-values .feature-grid, .methodik .feature-grid {
  flex-wrap: wrap;
  gap: 26px;
  justify-content: flex-start;
}
.section .feature-grid > li, .our-values .feature-grid > li, .nature-experiences .feature-grid > li {
  min-width: 220px;
  max-width: 327px;
  flex: 1 1 220px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Service List */
.service-list {
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 0;
}
.service-list > li {
  min-width: 215px;
  max-width: 335px;
  flex: 1 1 215px;
  border-left: 7px solid #8DC382;
  border-radius: 20px 22px 22px 20px;
  margin-bottom: 20px;
  background: #FAF6EE;
  box-shadow: 0 2.5px 16px #D9C7A744;
  position: relative;
}
.service-list > li:hover {
  background: #fff;
}
.service-list > li strong { font-weight: 900; color: #22733E; }

/* List bullets for expressive character */
ul:not(.main-nav):not(.mobile-nav):not(.footer-nav) li::before {
  content: '\2B50'; /* ⭐ */
  color: #F2C94C;
  margin-right: 8px;
  font-size: 1rem;
  vertical-align: baseline;
  font-family: 'Montserrat', Arial, sans-serif;
  opacity: 0.68;
}

/* =======================================================
   TESTIMONIALS
======================================================= */
.testimonials {
  background: #FDF7EF;
  border-radius: 20px 46px 20px 46px;
  box-shadow: 0 2px 14px #8DC38222;
  padding-top: 40px;
  padding-bottom: 40px;
}
.testimonials h2 {
  margin-bottom: 0;
}
.testimonials .content-wrapper {
  display: flex;
  flex-direction: row;
  gap: 22px;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 22px 20px 21px 26px;
  min-width: 250px;
  max-width: 350px;
  border-radius: 19px 19px 26px 26px;
  background: #fff;
  box-shadow: 0 3px 14px #8DC38222, 0 0.25px 1.5px #F1E9DB11;
  color: #1B3320;
  font-size: 1rem;
  margin-bottom: 20px;
  transition: box-shadow 0.16s, transform 0.16s;
  position: relative;
  z-index: 1;
}
.testimonial-card:hover {
  box-shadow: 0 9px 32px #8DC38233, 0 1.5px 8px #8DC38220;
  transform: translateY(-4px) scale(1.08) rotate(-1deg);
}
.rating {
  font-size: 1.42rem !important;
  color: #F2C94C;
  letter-spacing: 1.2px;
  margin-bottom: 0;
}
.testimonial-card blockquote {
  color: #22733E;
  background: #F6F5F094;
  border-left: 4px solid #8DC382;
  font-size: 1.07rem;
  margin-bottom: 3px;
}
.testimonial-author {
  color: #326B34;
  font-size: 0.97rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
}

/* =======================================================
   FOOTER
======================================================= */
footer {
  background: #8DC382;
  color: #fff;
  border-radius: 42px 42px 0 0;
  padding: 36px 0 32px 0;
  margin-top: 32px;
  box-shadow: 0 -3px 16px #326B3412;
  position: relative;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  margin-bottom: 10px;
  justify-content: center;
}
.footer-nav a {
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 7px 0;
  border-bottom: 2px solid transparent;
  transition: border-bottom 0.13s, color 0.13s;
  font-family: 'Montserrat', Arial, sans-serif;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #F2C94C;
  border-bottom: 2px solid #F2C94C;
}
footer p {
  color: #FAF6EE;
  font-size: 0.93rem;
  text-align: center;
  margin-top: 7px;
  letter-spacing: 0.01em;
}

/* =======================================================
   LEGAL PAGES & TYPOGRAPHIC SECTIONS
======================================================= */
.legal-section {
  background: #fff;
  border-radius: 26px 30px 38px 22px;
  box-shadow: 0 2px 18px #8DC38215;
  padding: 36px 20px 52px 20px;
  color: #326B34;
}
.legal-section .text-section h2 {
  margin-top: 24px;
}
.legal-section .text-section ul {
  margin-bottom: 20px;
}

/* Thank you page style */
.thank-you-section {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44vh;
  background: #FAF6EE;
  border-radius: 32px 32px 46px 46px;
  box-shadow: 0 6px 24px #8DC38222;
  padding: 60px 0 48px 0;
  margin-bottom: 54px;
  position: relative;
}

/* =======================================================
   CONTACT PAGE DETAILS
======================================================= */
.contact-details, .footer-info {
  background: #fff;
  border-radius: 29px 29px 32px 32px;
  box-shadow: 0 2px 14px #8DC38213;
}
.contact-details ul, .footer-info ul {
  margin-bottom: 14px;
}
.contact-details a, .footer-info a {
  color: #22733E;
  text-decoration: underline;
  font-weight: 600;
}

/* =======================================================
   ANIMATION CLASSES
======================================================= */
.fade-in {
  opacity: 0;
  animation: fadeInAnimation 0.7s forwards;
}
@keyframes fadeInAnimation {
  0% { opacity: 0; transform: translateY(60px) scale(0.98); }
  100% { opacity: 1; transform: none; }
}

/* =======================================================
   COOKIE CONSENT BANNER & MODAL
======================================================= */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0;
  width: 100vw;
  background: #326B34;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  z-index: 90;
  padding: 22px 18px 16px 18px;
  box-shadow: 0 -7px 54px #8DC38222;
  animation: slideUpIn 0.5s cubic-bezier(.45,.03,.31,.92);
  font-family: 'Montserrat', Arial, sans-serif;
  gap: 18px;
}
@keyframes slideUpIn {
  from { opacity: 0; transform: translateY(80px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-banner__text {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 10px;
  flex: 1 1 180px;
  min-width: 180px;
}
.cookie-banner__actions {
  display: flex;
  gap: 12px;
}
.cookie-btn, .cookie-settings-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  padding: 9px 20px;
  font-size: 1rem;
  font-weight: 800;
  border-radius: 20px;
  cursor: pointer;
  transition: background 0.18s, color 0.14s, transform 0.17s;
  margin-right: 0;
  margin-bottom: 0;
  box-shadow: 0 2px 8px #c3e5bc33;
}
.cookie-btn.accept {
  background: #8DC382;
  color: #fff;
}
.cookie-btn.reject {
  background: #fff;
  color: #326B34;
  border: 2px solid #8DC382;
}
.cookie-settings-btn {
  background: #F2C94C;
  color: #326B34;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #326B34;
  color: #fff;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #8DC382;
  color: #fff;
}
.cookie-settings-btn:hover, .cookie-settings-btn:focus {
  background: #fffbe7;
  color: #22733E;
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: #0000003d;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal {
  background: #FDF7EF;
  border-radius: 33px 22px 42px 30px;
  min-width: 295px;
  max-width: 94vw;
  box-shadow: 0 7px 38px #326B3442;
  padding: 34px 28px 38px 28px;
  color: #1e4920;
  font-family: 'Montserrat', Arial, sans-serif;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  animation: popUpShow 0.38s cubic-bezier(.77,.02,.2,.94);
  position: relative;
}
@keyframes popUpShow {
  from { opacity: 0; transform: scale(0.88) translateY(64px); }
  to { opacity: 1; transform: none; }
}
.cookie-modal-close {
  position: absolute;
  top: 10px; right: 20px;
  background: none;
  border: none;
  font-size: 2em;
  color: #22733E;
  cursor: pointer;
  z-index: 101;
  transition: color 0.13s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #F2C94C;
}
.cookie-modal h3 {
  font-size: 1.14rem;
  font-weight: 900;
  margin-bottom: 6px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 11px;
  font-size: 1rem;
}
.cookie-category label {
  font-weight: 700;
}
.cookie-category input[type=checkbox]:not(:disabled) {
  accent-color: #8DC382;
  width: 18px;
  height: 18px;
  border-radius: 5px;
}
.cookie-category input[type=checkbox][disabled] {
  accent-color: #ccc;
  opacity: 0.7;
  cursor: not-allowed;
}
.cookie-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
  width: 100%;
}

/* =======================================================
   RESPONSIVE TYPOGRAPHY + SPACING
======================================================= */
@media (max-width: 820px) {
  h1, .hero h1, .thank-you-section h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.4rem;
  }
  .container {
    padding: 0 5px;
  }
  .section, .about-section, .features,
  .testimonials, .cta, .services-overview, .nature-experiences, .thank-you-section {
    padding: 24px 7px;
  }
  .hero {
    padding: 24px 0 23px;
    min-height: 22vh;
  }
  .card, .feature-grid > li, .service-list > li {
    padding: 14px 5px 13px 7px;
    font-size: .99rem;
  }
}
@media (max-width: 540px) {
  h1, .hero h1, .thank-you-section h1 {
    font-size: 1.3rem;
  }
  h2 {
    font-size: 1.07rem;
    padding-top: 9px;
  }
  .section, .about-section, .features,
  .testimonials, .cta, .services-overview, .nature-experiences, .thank-you-section {
    padding: 10px 3px;
    margin-bottom: 24px;
  }
  .card, .feature-grid > li, .service-list > li {
    min-width: unset;
    max-width: 98vw;
  }
}

/* ===============
   SCROLLBAR STYLE (playful)
   =============== */
body::-webkit-scrollbar {
  width: 9px;
  background: #F1E9DB;
}
body::-webkit-scrollbar-thumb {
  background: #8DC38288;
  border-radius: 8px;
}

/* ===============
   MISC
   =============== */
::-webkit-input-placeholder { color: #8DC382; } /* Chrome/Opera/Safari */
::-moz-placeholder { color: #8DC382; } /* Firefox 19+ */
:-ms-input-placeholder { color: #8DC382; } /* IE 10+ */
::placeholder { color: #8DC382; }

/* Micro playful animations */
.card::after, .feature-grid > li::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 13px; right: 15px;
  width: 19px; height: 19px;
  background: #F2C94C;
  border-radius: 95% 61% 95% 33%/63% 38% 78% 81%;
  opacity: 0.13;
  z-index: 0;
  pointer-events: none;
  animation: wiggle 3.4s infinite alternate cubic-bezier(.4,.19,.85,.59);
}
@keyframes wiggle {
  0% { transform: scale(1) rotate(-2deg); }
  100% { transform: scale(.83) rotate(17deg); }
}

/* ===============
   ACCESSIBILITY
   =============== */
:focus-visible {
  outline: 2.5px solid #F2C94C;
  outline-offset: 3px;
}

/* Prevent overlapping at all screen sizes */
.card, .feature-grid > li, .service-list > li, .testimonial-card {
  min-width: 0;
  word-break: break-word;
}

/* Hide scroll for modal */
body.cookie-modal-open {
  overflow: hidden;
}

/* ====== Hide unused outlines ====== */
button:focus {
  outline: none;
}

/* ===============
   PRINT OPTIMIZATION
   =============== */
@media print {
  header, footer, .cookie-banner, .mobile-menu { display: none !important; }
  .section, .about-section, .features, .testimonials, .cta, .services-overview, .nature-experiences, .thank-you-section {
    margin-bottom: 14px !important;
    box-shadow: none !important;
    background: #fff !important;
    padding: 5px !important;
  }
}
