/* RESET & BASE TYPOGRAPHY */

html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #F9F7F1;
  color: #25652A;
  line-height: 1.7;
  min-height: 100vh;
  position: relative;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #25652A;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover,
a:focus {
  color: #6AB47B;
}

/* UTILITY CLASSES */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.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;
}

/* PLAYFUL DYNAMIC STYLE FOUNDATION */
:root {
  --primary: #25652A;
  --secondary: #6AB47B;
  --accent: #F9F7F1;
  --alert: #FE821F;
  --fun1: #FFE066;
  --fun2: #FF8E9E;
  --fun3: #60C5E7;
  --header-height-mobile: 64px;
  --header-height-desktop: 96px;
  --radius: 18px;
  --shadow: 0 2px 16px 0 rgba(38, 82, 45, 0.09);
}

/* FONT-FACE (Google Fonts REQUIRED) */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Roboto:wght@400;500;700&display=swap');

h1,h2,h3,h4,h5,h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 900;
  color: #25652A;
  margin-bottom: 16px;
  line-height: 1.15;
  letter-spacing: -0.5px;
}
h1 {
  font-size: 2.4rem;
  margin-bottom: 18px;
  color: #25652A;
}
h2 {
  font-size: 2rem;
  margin-bottom: 14px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #6AB47B;
}
h4 {
  font-size: 1.1rem;
}
.subheadline {
  font-size: 1.1rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #60C5E7;
}

/* HEADER */
header {
  background: var(--primary);
  color: var(--accent);
  width: 100%;
  z-index: 100;
  box-shadow: var(--shadow);
  position: relative;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height-mobile);
  position: relative;
}
header img {
  height: 42px;
  margin-right: 18px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
header nav a {
  color: var(--accent);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 3px 6px;
  border-radius: 10px;
  transition: background 0.2s, color 0.2s;
}
header nav a:hover,
header nav a:focus {
  background: var(--secondary);
  color: var(--primary);
}
.button.primary {
  background: var(--fun1);
  color: var(--primary);
  font-weight: 900;
  border-radius: 100px;
  padding: 12px 34px;
  font-size: 1.1rem;
  box-shadow: 0 6px 18px 0 rgba(106,180,123,0.12);
  transition: background 0.19s, color 0.19s, box-shadow 0.19s, transform 0.12s;
  border: none;
  outline: none;
  cursor: pointer;
  letter-spacing: 0.5px;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-left: 12px;
  display: inline-block;
}
.button.primary:hover,
.button.primary:focus {
  background: var(--fun3);
  color: #fff;
  transform: scale(1.06) rotate(-2deg);
  box-shadow: 0 12px 30px 0 rgba(96,197,231,0.12);
}
.button.secondary {
  background: var(--fun3);
  color: #fff;
  font-weight: 900;
  border-radius: 100px;
  padding: 12px 34px;
  font-size: 1.1rem;
  box-shadow: 0 2px 10px 0 rgba(96,197,231,0.09);
  transition: background 0.18s, color 0.18s, box-shadow 0.14s, transform 0.09s;
  border: none;
  outline: none;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-left: 12px;
  display: inline-block;
  cursor: pointer;
}
.button.secondary:hover,
.button.secondary:focus {
  background: var(--fun2);
  color: var(--primary);
  transform: scale(1.06) rotate(1deg);
  box-shadow: 0 8px 22px 0 rgba(255,142,158,0.09);
}
/* Hamburger button */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--fun3);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 2.1rem;
  width: 48px;
  height: 48px;
  cursor: pointer;
  z-index: 2099;
  margin-left: 12px;
  box-shadow: 0 0 15px 0 rgba(96,197,231,0.13);
  transition: background 0.18s, color 0.18s, box-shadow 0.17s, transform 0.12s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: var(--alert);
  color: #fff;
  transform: scale(1.1) rotate(-10deg);
}

/* Hide desktop nav on mobile, show burger */
@media (max-width: 1000px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 1001px) {
  .mobile-menu-toggle {
    display: none;
  }
  .mobile-menu {
    display: none !important;
  }
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  z-index: 2100;
  background: rgba(88,160,81,0.98);
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0 0 28px 0;
  transition: transform 0.36s cubic-bezier(.66,0,.28,1), opacity 0.23s;
  transform: translateX(100%);
}
.mobile-menu.active {
  display: flex;
  transform: translateX(0);
  opacity: 1;
}
.mobile-menu-close {
  margin: 24px 4vw 0 16px;
  background: var(--fun2);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 43px;
  height: 43px;
  font-size: 2rem;
  align-self: flex-end;
  cursor: pointer;
  box-shadow: 0 0 14px 0 rgba(255,142,158,0.11);
  transition: background 0.2s, transform 0.13s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: var(--alert);
  transform: scale(1.13) rotate(7deg);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 33px;
  margin-top: 45px;
  width: 100%;
  align-items: flex-start;
  padding-left: 28px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.36rem;
  font-weight: 800;
  padding: 10px 22px 10px 6px;
  border-radius: 12px;
  letter-spacing: 0.5px;
  transition: background 0.17s, color 0.14s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: var(--fun1);
  color: var(--primary);
}

/* HERO SECTION */
.hero {
  background: linear-gradient(90deg,#FFE066 40%,#60C5E7 110%);
  padding-top: 48px;
  padding-bottom: 52px;
  border-bottom-left-radius: 60px;
  border-bottom-right-radius: 60px;
  box-shadow: 0 8px 64px 0 rgba(106,180,123,0.10);
  min-height: 270px;
  display: flex;
  align-items: center;
  margin-bottom: 60px;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
.hero h1 {
  font-size: 2.35rem;
  color: #25652A;
  font-weight: 900;
}
.hero .subheadline {
  font-size: 1.1rem;
  color: #60C5E7;
}

/* FEATURES GRID */
.features .content-wrapper {
  margin-top: 24px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.feature-grid li {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 2px 14px 0 rgba(38,82,45,0.13);
  padding: 28px 22px 28px 22px;
  min-width: 235px;
  flex: 1 1 225px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  font-size: 1.03rem;
  transition: box-shadow 0.17s, transform 0.18s;
  margin-bottom: 20px;
  position: relative;
  border: 3px solid transparent;
}
.feature-grid li:hover {
  box-shadow: 0 6px 36px 0 rgba(106,180,123,0.18);
  border: 3px solid var(--fun3);
  transform: translateY(-4px) scale(1.03) rotate(-1.5deg);
}
.feature-grid img {
  width: 44px;
  height: 44px;
  background: var(--fun2);
  padding: 7px;
  border-radius: 14px 18px 5px 15px;
  margin-bottom: 2px;
  box-shadow: 0 1px 6px 0 rgba(255,142,158,0.06);
  transition: background 0.21s;
}
.feature-grid li:hover img {
  background: var(--fun1);
}

/* SERVICE CARDS */
.services .service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 28px;
}
.service-card {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 3px 22px 0 rgba(38,82,45,0.11);
  padding: 28px 24px 22px 24px;
  flex: 1 1 235px;
  min-width: 240px;
  max-width: 340px;
  margin-bottom: 20px;
  transition: box-shadow 0.17s, transform 0.14s, border 0.2s;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  border: 3px solid transparent;
  position: relative;
}
.service-card:hover {
  box-shadow: 0 7px 42px 0 rgba(255,224,102,0.21);
  border: 3px solid var(--fun1);
  transform: scale(1.03) rotate(0.7deg);
}
.service-price {
  background: var(--fun1);
  color: var(--primary);
  margin-top: 8px;
  font-weight: bold;
  padding: 8px 17px;
  border-radius: 16px;
  font-size: 1.1rem;
  box-shadow: 0 2px 9px 0 rgba(255,224,102,0.12);
}

/* TESTIMONIALS */
.testimonials .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 10px;
}
.testimonial-card {
  background: #fff;
  border: 2.5px solid var(--fun3);
  border-radius: 24px;
  box-shadow: 0 3px 16px 0 rgba(38,82,45,0.09);
  padding: 30px 24px 18px 24px;
  margin-bottom: 20px;
  flex: 1 1 260px;
  min-width: 240px;
  transition: box-shadow 0.17s, border-color 0.19s, transform 0.14s;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.testimonial-card:hover {
  box-shadow: 0 8px 39px 0 rgba(106,180,123,0.13);
  border: 2.5px solid var(--fun2);
  transform: translateY(-4px) scale(1.04) rotate(1deg);
}
.testimonial-card p {
  color: #1C3222;
  font-size: 1.08rem;
  font-style: italic;
  margin-bottom: 7px;
}
.testimonial-meta {
  font-size: 1rem;
  color: var(--secondary);
  font-weight: 700;
  letter-spacing: 0.2px;
}

/* CTA-BANNER */
.cta-banner {
  background: linear-gradient(88deg,#FF8E9E 10%,#FFE066 86%);
  border-radius: 36px;
  padding: 44px 20px 44px 20px;
  margin-bottom: 60px;
  box-shadow: 0 5px 44px 0 rgba(255,142,158,0.13);
  text-align: center;
}
.cta-banner h2, .cta-banner p {
  color: #25652A;
}
.cta-banner .button.primary {
  margin-top: 16px;
}

/* LEGAL & TEXT-ONLY SECTIONS */
.legal-content {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 1px 12px 0 rgba(38,82,45,0.07);
  padding: 40px 28px;
  margin-bottom: 60px;
  margin-top: 30px;
}
.text-section {
  margin-bottom: 30px;
  line-height: 1.8;
  font-size: 1.07rem;
  color: #28533C;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.text-section ul {
  margin: 0 0 6px 22px;
  padding: 0 0 0 10px;
  line-height: 1.7;
}
.text-section li {
  margin-bottom: 6px;
}

/* FAQ */
.faq-block details {
  background: var(--fun1);
  color: #1C3222;
  border-radius: 14px;
  padding: 18px 20px;
  margin-bottom: 20px;
  border: 2px solid var(--fun2);
  transition: border 0.18s, box-shadow 0.19s;
  box-shadow: 0 2px 8px 0 rgba(255,224,102,0.07);
}
.faq-block details[open] {
  border: 2.5px solid var(--fun3);
  box-shadow: 0 7px 31px 0 rgba(96,197,231,0.13);
}
.faq-block summary {
  font-family: 'Montserrat', sans-serif;
  font-weight: bold;
  font-size: 1.08rem;
  cursor: pointer;
  outline: none;
  transition: color 0.16s;
}
.faq-block details[open] summary {
  color: var(--secondary);
}
.faq-block p {
  margin-top: 12px;
  font-size: 1rem;
}

/* TABLES */
table {
  width: 100%;
  border-collapse: collapse;
  overflow-x: auto;
  background: #fff;
  margin-bottom: 24px;
  border-radius: 16px;
  box-shadow: 0 1px 12px 0 rgba(38,82,45,0.05);
  font-size: 1.01rem;
}
thead th {
  background: var(--fun3);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  padding: 12px 8px;
  border-radius: 16px 16px 0 0;
}
tbody td {
  padding: 12px 9px;
  border-bottom: 2px solid var(--fun1);
  color: #25652A;
}
tbody tr:last-child td { border-bottom: none; }
tbody tr:nth-child(even) td { background: #F9F7F1; }

/* FOOTER */
footer {
  background: #25652A;
  color: #F9F7F1;
  padding: 38px 0 20px 0;
  margin-top: 60px;
  border-top-left-radius: 32px;
  border-top-right-radius: 32px;
  box-shadow: 0 -1px 16px 0 rgba(38,82,45,0.07);
}
.footer-nav {
  display: flex;
  gap: 28px;
  justify-content: center;
  margin-bottom: 24px;
}
.footer-nav a {
  color: #F9F7F1;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  opacity: 0.9;
  transition: color 0.2s, opacity 0.14s;
  padding: 2px 8px;
  border-radius: 9px;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: var(--fun2);
  background: rgba(255,142,158,0.13);
  opacity: 1;
}
.copyright {
  text-align: center;
  font-size: 0.96rem;
  color: #bbe3be;
}

/* MISC CARDS GENERIC */
.card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 2px 14px 0 rgba(38,82,45,0.08);
  padding: 22px 18px 19px 18px;
  margin-bottom: 20px;
  transition: box-shadow 0.15s, transform 0.11s;
}
.card:hover {
  box-shadow: 0 7px 32px 0 rgba(106,180,123,0.13);
  transform: scale(1.028);
}

/* CTA-TEXT */
.cta-text {
  margin-top: 22px;
  font-size: 1.1rem;
  text-align: center;
}
.cta-text .button {
  margin-top: 10px;
}

/* RESPONSIVE FLEX PATTERNS */
.content-wrapper, .service-cards, .card-container, .content-grid, .testimonials .content-wrapper, .footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.content-wrapper {
  flex-direction: column;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .container {
    padding: 0 10px;
  }
  .service-cards {
    gap: 16px;
  }
  .feature-grid {
    gap: 16px;
  }
  .cta-banner {
    border-radius: 22px;
    padding: 36px 9px 38px 9px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 1.8rem;}
  h2 { font-size: 1.3rem;}
  .hero {
    min-height: 180px;
    border-bottom-left-radius: 35px;
    border-bottom-right-radius: 35px;
    padding-top: 24px;
    padding-bottom: 28px;
  }
  .features, .services, .cta-banner, .testimonials, .resource-links,
  .about-intro, .team, .values, .faq-block, .article-preview, .legal-content, .membership-hero, .membership-benefits, .pricing-table, .contact-form, .contact-info, .thank-you-message {
    padding: 32px 9px;
  }
  .feature-grid, .testimonials .content-wrapper, .service-cards, .content-grid, .footer-nav {
    flex-direction: column;
    gap: 17px;
  }
  .footer-nav {
    gap: 16px;
  }
  header .container {
    min-height: var(--header-height-mobile);
    padding: 0 8px;
  }
}
@media (max-width: 600px) {
  table, thead, tbody, th, td, tr { display: block; }
  th, td {
    text-align: left;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 1rem;
  }
  thead { display: none; }
  tbody tr { border-bottom: 1.5px solid #eee; margin-bottom: 12px; }
}
@media (max-width: 480px) {
  .section, .legal-content,
  .feature-grid li, .service-card, .testimonial-card {
    padding-left: 8px;
    padding-right: 8px;
  }
  .cta-banner {
    border-radius: 13px;
    padding: 23px 3px 22px 3px;
  }
}
/* TEXT-IMAGE & FLEX DIRECTIONS ON MOBILE */
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
  .content-grid,
  .testimonials .content-wrapper,
  .service-cards,
  .feature-grid,
  .card-container {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
}

/* MICRO-INTERACTIONS & ANIMATIONS */
.button, .feature-grid li, .service-card, .testimonial-card, .faq-block details {
  transition-property: box-shadow, transform, border, background, color, opacity;
  transition-timing-function: cubic-bezier(.66,0,.28,1);
  transition-duration: 0.18s;
}
.button:active, .service-card:active, .feature-grid li:active {
  transform: scale(0.98) rotate(-1deg);
  filter: brightness(0.97);
}
.testimonial-card:hover:after {
  content: '✨';
  font-size: 1.2rem;
  position: absolute;
  top: 18px; right: 18px;
  animation: spin-stars 0.7s linear;
}
@keyframes spin-stars {
  0% { transform:rotate(-60deg); opacity:0; }
  50%{ opacity:1; }
  100% { transform:rotate(30deg); opacity:0; }
}
/* Playful hover shake for feature icons */
.feature-grid li:hover img {
  animation: icon-bounce 0.40s cubic-bezier(.66,0,.28,1);
}
@keyframes icon-bounce {
  0% { transform: rotate(-10deg) scale(1); }
  20% { transform: rotate(4deg) scale(1.08); }
  42% { transform: rotate(-7deg) scale(0.96); }
  70% { transform: rotate(2deg) scale(1.01); }
  100% { transform: rotate(0) scale(1); }
}

/* FORMATTING FOR COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 19000;
  background: #fffbe7;
  color: #25652A;
  box-shadow: 0 -4px 28px 0 rgba(255,224,102,0.10);
  border-top: 4px solid #FFE066;
  width: 100%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  padding: 18px 20px 18px 18px;
  font-size: 1rem;
  animation: popCookieBanner 0.7s cubic-bezier(.66,0,.28,1);
}
@keyframes popCookieBanner {
  0% { transform: translateY(100%); opacity: 0; }
  60% { transform: translateY(-10px) scale(1.03); opacity: 1; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 15px;
  align-items: center;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 100px;
  padding: 7px 24px;
  border: none;
  cursor: pointer;
  margin: 0 2px;
  transition: background 0.15s, color 0.13s, transform 0.10s;
}
.cookie-banner .accept {
  background: var(--fun1);
  color: var(--primary);
}
.cookie-banner .accept:hover {
  background: var(--fun3);
  color: #fff;
}
.cookie-banner .reject {
  background: var(--fun2);
  color: #fff;
}
.cookie-banner .reject:hover {
  background: var(--fun3);
  color: #fff;
}
.cookie-banner .settings {
  background: #fff;
  color: var(--primary);
  border: 2.5px solid var(--fun3);
}
.cookie-banner .settings:hover {
  background: var(--fun1);
}

/* COOKIE SETTINGS MODAL */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  z-index: 20004;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(38,101,42,0.24);
  justify-content: center;
  align-items: flex-end;
  animation: fadeIn 0.4s cubic-bezier(.66,0,.28,1);
}
.cookie-modal-overlay.active {
  display: flex;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  min-width: 320px;
  max-width: 95vw;
  background: #fff;
  border-radius: 32px 32px 16px 16px;
  box-shadow: 0 11px 44px 0 rgba(255,224,102,0.21);
  margin: 0 auto 30px auto;
  padding: 38px 30px 30px 30px;
  animation: popCookies 0.4s cubic-bezier(.66,0,.28,1);
  position: relative;
  color: #25652A;
}
@keyframes popCookies {
  0% { transform: scale(0.89) translateY(60px); opacity: 0.65; }
  100% { transform: scale(1); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.4rem;
  margin-bottom: 20px;
  font-weight: bold;
  color: var(--primary);
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 19px;
  margin-bottom: 22px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 11px;
}
.cookie-category label {
  font-weight: 500;
}
.cookie-category input[type="checkbox"] {
  accent-color: var(--fun3);
  width: 22px;
  height: 22px;
}
.cookie-category .toggle-switch {
  display: inline-block;
  width: 36px;
  height: 21px;
  background: #eee;
  border-radius: 13px;
  position: relative;
  margin-left: 7px;
  cursor: pointer;
  transition: background 0.14s;
}
.cookie-category .toggle-switch.checked {
  background: var(--fun3);
}
.cookie-category .toggle-switch:before {
  content: '';
  position: absolute;
  left: 3px;
  top: 3px;
  width: 15px;
  height: 15px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 4px 0 rgba(96,197,231,0.13);
  transition: left 0.14s;
}
.cookie-category .toggle-switch.checked:before {
  left: 18px;
}
.cookie-modal .cookie-modal-buttons {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
  margin-top: 18px;
}
.cookie-modal .cookie-modal-button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 100px;
  padding: 8px 24px;
  border: none;
  cursor: pointer;
  margin: 0 2px;
  transition: background 0.15s, color 0.13s, transform 0.10s;
}
.cookie-modal .save {
  background: var(--fun1);
  color: var(--primary);
}
.cookie-modal .save:hover {
  background: var(--fun3);
  color: #fff;
}
.cookie-modal .cancel {
  background: #fff;
  color: var(--primary);
  border: 2.5px solid var(--fun3);
}
.cookie-modal .cancel:hover {
  background: var(--fun1);
}

/* THANK YOU AND SUCCESS */
.thank-you-message {
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 4px 33px 0 rgba(106,180,123,0.09);
  text-align: center;
  margin: 60px 0;
  padding: 48px 14px 58px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.thank-you-message h1 {
  color: var(--fun2);
  font-size: 2.2rem;
  margin-bottom: 18px;
}
.thank-you-message p {
  margin-bottom: 24px;
}

/* Z-INDEX ORDERING */
header { z-index: 1000; }
.mobile-menu { z-index: 2100; }
.cookie-banner { z-index: 19000; }
.cookie-modal-overlay { z-index: 20004; }

/* ACCESSIBILITY */
:focus { outline: 2.5px dashed var(--fun3); outline-offset: 2px; }

/* Hide visually, but keep for screen readers (for accessibility if needed) */
.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

/* Utility: Hide on Desktop or Mobile */
.hide-mobile { display: none !important; }
@media (max-width: 1000px) { .hide-mobile { display: block !important; } }
/* Utility: Extra Spacing */
.spacer-32 { height: 32px; width: 100%; }
/* END */
section {
  padding: 20px 0;
}