/* =================== 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-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  background: #F5F2ED;
  color: #22232a;
  min-height: 100vh;
  line-height: 1.6;
  font-family: 'Merriweather', Georgia, serif;
  font-size: 16px;
  font-weight: 400;
  -webkit-tap-highlight-color: transparent;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #23456C;
  text-decoration: none;
  transition: color .2s;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  box-shadow: none;
  padding: 0;
  margin: 0;
}
ul, ol {
  margin-left: 24px;
}
.section { margin-bottom: 60px; padding: 40px 20px; }

/* =================== GLOBAL TYPOGRAPHY =================== */
@import url('https://fonts.googleapis.com/css?family=Merriweather:400,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Montserrat:400,600&display=swap');

h1, .display {
  font-family: 'Montserrat', Georgia, serif;
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #23456C;
  margin-bottom: 24px;
}
h2 {
  font-family: 'Montserrat', Georgia, serif;
  font-weight: 600;
  font-size: 2rem;
  line-height: 1.18;
  color: #23456C;
  margin-bottom: 20px;
}
h3 {
  font-family: 'Merriweather', Georgia, serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: #29405c;
  margin-bottom: 14px;
}
h4, h5, h6 {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 1rem;
  color: #23456C;
}
p, li, blockquote, dl, dd {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 1rem;
  color: #22232a;
  letter-spacing: 0.005em;
  margin-bottom: 14px;
}
blockquote {
  font-style: italic;
  color: #29405c;
  background: #ede9e3;
  border-left: 4px solid #23456C;
  padding: 20px 28px;
  margin: 20px 0;
  border-radius: 10px;
}
strong, b {
  font-weight: bold;
  color: #23456C;
}

/* =================== LAYOUT CONTAINERS & SPACING =================== */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  padding: 36px 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(35,69,108,0.06), 0 1.5px 4px rgba(30,40,39,0.05);
  padding: 30px 20px;
  transition: box-shadow .18s, transform .18s;
}
.card:hover {
  box-shadow: 0 6px 24px rgba(35,69,108,0.11), 0 2px 8px rgba(30,40,39,0.08);
  transform: translateY(-2px) scale(1.012);
  z-index: 3;
}
.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;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1.5px 5px rgba(35,69,108,0.07); 
  margin-bottom: 20px;
  transition: box-shadow .15s, background .18s;
}
.testimonial-card:hover {
  box-shadow: 0 4px 18px rgba(35,69,108,0.13), 0 2px 6px rgba(66,160,90,.06);
  background: #f8f7f4;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  padding: 26px 22px 20px 22px;
  border-radius: 12px;
  box-shadow: 0 1.5px 5px rgba(35,69,108,0.07);
  margin-bottom: 20px;
  transition: box-shadow .17s;
}
.feature-item img {
  width: 42px;
  height: 42px;
  margin-bottom: 6px;
}
.feature-item:hover {
  box-shadow: 0 6px 20px rgba(35,69,108,.12);
  background: #F5F2ED;
}

/* ==================== HERO & CTA STYLES ======================*/
.hero {
  background: #23456C url('../assets/hero-bg.svg') no-repeat center center/cover;
  color: #fff;
  padding: 54px 0 64px 0;
  min-height: 340px;
}
.hero h1, .hero h2 {
  color: #fff;
}
.hero p {
  color: #f5f2ed;
  font-size: 1.125rem;
  max-width: 700px;
}
.cta.primary, a.cta.primary, .cta.primary:visited {
  display: inline-block;
  background: #42A05A;
  color: #fff !important;
  font-family: 'Montserrat', serif;
  font-weight: 700;
  font-size: 1.08rem;
  border-radius: 30px;
  padding: 13px 38px;
  box-shadow: 0 1.5px 8px rgba(66,160,90,0.12);
  letter-spacing: .01em;
  border: none;
  cursor: pointer;
  transition: background .19s, transform .13s, box-shadow .13s;
}
.cta.primary:hover,
.cta.primary:focus {
  background: #23456C;
  color: #fff !important;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 2px 16px rgba(35,69,108,0.19);
}
.cta.secondary, a.cta.secondary, .cta.secondary:visited {
  display: inline-block;
  background: #23456C;
  color: #fff !important;
  font-family: 'Montserrat', serif;
  font-size: 1.08rem;
  font-weight: 600;
  border-radius: 30px;
  padding: 12px 32px;
  letter-spacing: .01em;
  border: none;
  cursor: pointer;
  transition: background .18s, transform .13s;
}
.cta.secondary:hover,
.cta.secondary:focus {
  background: #42A05A;
  color: #fff !important;
  transform: translateY(-1px) scale(1.03);
}

/* =================== NAVIGATION STYLES =================== */
header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(35,69,108,0.03);
  padding: 0;
  position: sticky;
  top: 0; left:0; right:0;
  z-index: 120;
}
.logo {
  display: flex;
  align-items: center;
  margin-right: 30px;
  padding: 16px 0;
}
.logo img {
  height: 44px;
  width: auto;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-family: 'Montserrat', Georgia, serif;
}
.main-nav a {
  font-size: 1rem;
  padding: 9px 10px;
  color: #23456C;
  border-radius: 4px;
  transition: background .14s, color .18s;
}
.main-nav a:hover,
.main-nav a:focus {
  background: #42A05A;
  color: #fff;
}
.main-nav .cta.primary {
  margin-left: 20px;
  padding: 10px 25px;
  font-size: 1.08rem;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px;
  min-height: 66px;
  gap: 16px;
}

/* ===== Mobile Menu Hamburger and Drawer =======*/
.mobile-menu-toggle {
  display: none;
  background: #23456C;
  color: #fff;
  font-size: 2.0rem;
  border-radius: 7px;
  padding: 5px 12px 4px 12px;
  cursor: pointer;
  border: none;
  margin-left: 16px;
  transition: background .13s;
  z-index: 202;
}
.mobile-menu-toggle:hover {
  background: #42A05A;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff; /* covers content */
  z-index: 300;
  transform: translateX(-100vw);
  will-change: transform;
  transition: transform .38s cubic-bezier(.62,.11,.38,.92);
  box-shadow: 0 1.5px 18px 0 rgba(35,69,108,0.14);
  display: flex;
  flex-direction: column;
  padding-top: 30px;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  right: 18px;
  top: 15px;
  background: #23456C;
  color: #fff;
  font-size: 2.1rem;
  border-radius: 5px;
  padding: 2px 11px 3px 11px;
  cursor: pointer;
  border: none;
  z-index: 310;
  transition: background .13s;
}
.mobile-menu-close:hover {
  background: #42A05A;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 60px;
  align-items: center;
}
.mobile-nav a {
  font-size: 1.13rem;
  color: #23456C;
  padding: 13px 32px;
  border-radius: 9px;
  background: transparent;
  width: 90vw;
  text-align: left;
  transition: background .18s, color .14s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #42A05A;
  color: #fff;
}

/* =================== FOOTER ===================*/
footer {
  margin-top: 40px;
  background: #23456C;
  color: #FFF;
  font-family: 'Merriweather', Georgia, serif;
  padding: 40px 0 0 0;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 32px 22px;
  align-items: flex-start;
  justify-content: space-between;
  padding: 0 20px 20px 20px;
}
.brand-footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
  min-width: 220px;
}
.brand-footer img {
  width: 90px;
  margin-bottom: 4px;
}
.brand-footer p {
  color: #fff;
  font-size: 1.04rem;
  margin-bottom: 0;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-nav a {
  color: #FFF;
  font-size: 1rem;
  margin-bottom: 2px;
  transition: color .12s, text-decoration .11s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: #42A05A;
  text-decoration: underline;
}
.social-links {
  display: flex;
  gap: 13px;
  align-items: center;
}
.social-links a {
  display: inline-flex;
  border-radius: 6px;
  padding: 7px;
  background: rgba(245,242,237,0.075);
  transition: background .13s;
}
.social-links a:hover,
.social-links a:focus {
  background: #42A05A;
}
.social-links img {
  width: 24px;
  height: 24px;
}

/* =================== MAIN SECTION LAYOUTS ===================*/
.features .feature-grid,
.features .feature-list,
.guides .guide-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.features .feature-item,
.guides .guide-list>div {
  min-width: 210px;
  flex: 1 1 230px;
  max-width: 320px;
}

.testimonials .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 15px;
}

/* Secondary content blocks */
.teaser-articles ul, .habit-descriptions ul, .zone-descriptions ul, .quick-facts ul, .tip-blocks ul, .volunteer-info ul, .statistic-blocks ul, .faq-snippets dl {
  font-size: 1rem;
  margin-bottom: 12px;
  line-height: 1.56;
  color: #222;
}
.teaser-articles li, .habit-descriptions li, .zone-descriptions li, .quick-facts li, .tip-blocks li, .volunteer-info li, .statistic-blocks li {
  margin-bottom: 9px;
}

/* Content blocks with card feel */
.map-placeholder, .confirmation-message, .note-block, .follow-up-info, .contact-info-block {
  background: #fff;
  border-radius: 11px;
  box-shadow: 0 1.5px 6px rgba(35,69,108,.06);
  padding: 20px 24px;
  margin-bottom: 18px;
}

.map-placeholder {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1.05rem;
  color: #23456C;
}

.contact-info-block img {
  vertical-align: middle;
  margin-right: 11px;
  width: 26px;
  height: 26px;
}

/* Legal section */
.legal .content-wrapper {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1.5px 7px 0 rgba(35,69,108,0.03);
  padding: 36px 26px;
  margin-top: 32px;
  gap: 16px;
}

/* Thank you page */
.thankyou .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 20px;
}

/* =================== RESPONSIVE DESIGN ===================*/
@media (max-width: 992px) {
  .container { max-width: 98vw; padding: 0 12px; }
  header .container { padding: 0 9px; }
  footer .container { gap: 16px 10px; padding: 0 10px 10px 10px; }
}
@media (max-width: 768px) {
  h1 { font-size: 2.02rem; }
  h2 { font-size: 1.37rem; }
  header .container {
    flex-direction: row;
    align-items: center;
    padding: 0 7px;
    min-height: 56px;
  }
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .footer-nav { flex-direction: column; gap:6px; }
  .brand-footer img { width: 60px; }
  .features .feature-grid,
  .features .feature-list,
  .guides .guide-list,
  .testimonials .content-wrapper,
  .card-container,
  .content-grid {
    flex-direction: column;
    gap: 20px;
  }
  .feature-item, .guides .guide-list>div {
    max-width: 100%;
    min-width: unset;
    width: 100%;
  }
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 22px;
  }
}

@media (max-width: 520px) {
  .container,
  .content-wrapper {
    padding: 0 3vw;
  }
  .brand-footer img {
    width: 44px;
  }
  .legal .content-wrapper {
    padding: 20px 7px;
  }
}

/* Space between and within sections */
section {
  margin-bottom: 54px;
  padding: 40px 0;
}
section:last-child {
  margin-bottom: 0;
}

/* Spacing helpers */
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mt-32 { margin-top: 32px !important; }

/* =================== HOVER/FOCUS MICROINTERACTIONS =================== */
a, button {
  outline-offset: 2px;
  transition: color .16s, box-shadow .13s, background .17s;
}
a:focus, button:focus {
  outline: 2px dashed #42A05A;
  box-shadow: 0 0 0 3px #cee9da;
}

/* =================== COOKIE BANNER =================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #23456C;
  color: #fff;
  z-index: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 -2px 14px 0 rgba(35,69,108,.19);
  padding: 18px 5vw 18px 5vw;
  min-height: 80px;
  font-family: 'Merriweather', Georgia, serif;
  transition: transform .35s cubic-bezier(.42,.13,.37,.98);
}
.cookie-banner-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  max-width: 500px;
}
.cookie-banner-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 10px;
}
.cookie-banner button {
  display: inline-block;
  font-family: 'Montserrat', Georgia, serif;
  font-size: 1rem;
  letter-spacing: 0.01em;
  font-weight: 600;
  border-radius: 26px;
  padding: 10px 22px;
  margin-bottom: 2px;
  margin-top: 2px;
  cursor: pointer;
  border: none;
  transition: background .16s, color .14s;
  box-shadow: 0 1.5px 7px rgba(35,69,108,0.10);
}
.cookie-banner .accept {
  background: #42A05A;
  color: #fff;
}
.cookie-banner .accept:hover,
.cookie-banner .accept:focus {
  background: #22803a;
}
.cookie-banner .reject {
  background: transparent;
  color: #F5F2ED;
  border: 1.5px solid #42A05A;
}
.cookie-banner .reject:hover,
.cookie-banner .reject:focus {
  background: #42A05A;
  color: #fff;
}
.cookie-banner .settings {
  background: #fff;
  color: #23456C;
  border: 1.5px solid #23456C;
}
.cookie-banner .settings:hover,
.cookie-banner .settings:focus {
  background: #ede9e3;
  color: #23456C;
}

@media (max-width: 624px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 9px 21px 9px;
    min-height: unset;
  }
  .cookie-banner-content {
    align-items: flex-start;
    max-width: 96vw;
  }
}

/* ===== Cookie Modal ===== */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0; top: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(35,69,108, 0.45);
  align-items: center;
  justify-content: center;
  transition: background .18s;
}
.cookie-modal-overlay.active {
  display: flex;
}
.cookie-modal {
  background: #fff;
  color: #22232a;
  border-radius: 16px;
  box-shadow: 0 7px 44px rgba(35,69,108,.22);
  padding: 38px 28px 28px 28px;
  min-width: 304px;
  max-width: 95vw;
  animation: fadein .44s;
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-family: 'Merriweather', Georgia, serif;
}
@keyframes fadein {
  0% {opacity:0; transform: scale(.93);}
  100% {opacity: 1; transform: scale(1);}
}
.cookie-modal-close {
  background: #23456C;
  color: #fff;
  border-radius: 5px;
  font-size: 1.3rem;
  border: none;
  align-self: flex-end;
  padding: 2px 14px;
  cursor: pointer;
  margin-bottom: 12px;
  transition: background .14s;
}
.cookie-modal-close:hover {
  background: #42A05A;
}
.cookie-modal h3 {
  font-family: 'Montserrat', Georgia, serif;
  font-size: 1.11rem;
  margin-bottom: 10px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 12px;
}
.cookie-toggle {
  width: 44px;
  height: 24px;
  accent-color: #42A05A;
}
.toggle-label {
  font-size: 1rem;
  color: #23456C;
  font-family: 'Merriweather', Georgia, serif;
}
.cookie-modal .modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
  justify-content: flex-end;
}
.cookie-modal button {
  min-width: 110px;
  font-size: 1rem;
  border-radius: 24px;
  padding: 8px 16px;
  border: none;
  font-family: 'Montserrat', Georgia, serif;
  background: #23456C;
  color: #fff;
  cursor: pointer;
  transition: background .14s;
}
.cookie-modal button:hover,
.cookie-modal button:focus {
  background: #42A05A;
  color: #fff;
}
.cookie-modal .essential[disabled],
.cookie-modal .essential {
  background: #ececec;
  accent-color: #aaa;
  cursor: default;
}

/* =================== UTILITIES =================== */
.hide, .d-none { display: none !important; }

/* =================== ACCESSIBILITY =================== */
@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation-duration: 0.001s !important;
  }
}

/* =================== END OF CSS =================== */
