/* ====================
   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 {
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}
body {
  font-family: 'Open Sans', Arial, sans-serif;
  background: #F0EDE7;
  color: #294C3B;
  font-size: 1rem;
  min-height: 100vh;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #294C3B;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus,
a:hover {
  color: #9AD9BC;
  outline: none;
}
ul, ol {
  list-style: none;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
  background: none;
  border: none;
  outline: none;
  box-sizing: border-box;
}
button {
  cursor: pointer;
}
:focus-visible {
  outline: 2px solid #9AD9BC;
  outline-offset: 1px;
}

/* ====================
   FONT IMPORTS
   ==================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Open+Sans:wght@400;700&display=swap');

/* ====================
   BRAND COLORS
   ==================== */
:root {
  --primary: #294C3B;
  --secondary: #9AD9BC;
  --accent: #F0EDE7;
  --black: #181C16;
  --white: #fff;
  --error: #D94646;
  --success: #36BB7B;
  --shadow: 0 4px 18px 0 rgba(41,76,59,0.07);
}

/* ====================
   STRUCTURE & LAYOUT
   ==================== */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

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

/* Flex utility patterns */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--white);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 32px 24px;
  flex: 1 1 280px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 240px;
  transition: box-shadow 0.25s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 8px 24px 0 rgba(41,76,59,0.13);
  transform: translateY(-3px) scale(1.02);
}

.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;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background: var(--accent);
  padding: 20px 32px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 32px 24px;
  flex: 1 1 220px;
  min-width: 180px;
  transition: box-shadow 0.25s, transform 0.2s;
}
.feature-item:hover {
  box-shadow: 0 8px 24px 0 rgba(41,76,59,0.13);
  transform: translateY(-2px) scale(1.01);
}

/* ====================
   TYPOGRAPHY
   ==================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  letter-spacing: 0.5px;
  color: var(--primary);
  line-height: 1.1;
}
h1 {
  font-size: 2.75rem;
  margin-bottom: 14px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 12px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}
h4, h5, h6 {
  font-size: 1rem;
  margin-bottom: 6px;
}
p, li, span, em, blockquote {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--primary);
}
strong {
  font-weight: 700;
  color: var(--secondary);
}
blockquote {
  font-size: 1.125rem;
  font-style: italic;
  color: var(--primary);
  border-left: 4px solid var(--secondary);
  margin: 0 0 8px 0;
  padding: 0 0 0 18px;
  background: none;
}

/* Visual hierarchy for section titles */
.section > .container > .content-wrapper > h2,
.section > .container h2 {
  font-size: 2.25rem;
  color: var(--primary);
  margin-bottom: 16px;
}

/* ====================
   HEADER & NAVIGATION
   ==================== */
header {
  background: var(--white);
  border-bottom: 3px solid var(--secondary);
  padding: 0.5rem 0 0.5rem 0;
  position: relative;
  z-index: 30;
}
.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.logo-link img {
  height: 50px;
  width: auto;
  display: block;
}
nav.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
nav.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 8px 14px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
  color: var(--primary);
  position: relative;
}
nav.main-nav a.cta-btn {
  background: var(--secondary);
  color: var(--primary);
  font-weight: 900;
  font-size: 1rem;
  padding: 9px 20px;
  border-radius: 28px;
  box-shadow: var(--shadow);
  border: 2px solid var(--secondary);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, border 0.2s;
}
nav.main-nav a.cta-btn:hover, nav.main-nav a.cta-btn:focus {
  background: var(--primary);
  color: var(--accent);
  box-shadow: 0 4px 18px 0 rgba(41,76,59,0.19);
  border-color: var(--primary);
}
nav.main-nav a:not(.cta-btn):hover, nav.main-nav a:not(.cta-btn):focus {
  background: var(--secondary);
  color: var(--primary);
}
.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: 9999;
}
.skip-link:focus {
  left: 12px;
  top: 12px;
  width: auto;
  height: auto;
  padding: 8px 12px;
  background: var(--secondary);
  color: var(--primary);
  border-radius: 8px;
  outline: none;
}

/* Hamburger/mobile menu button */
.mobile-menu-toggle {
  display: none;
  background: var(--primary);
  color: var(--accent);
  font-size: 2rem;
  border-radius: 8px;
  border: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
  z-index: 99;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--secondary);
  color: var(--primary);
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  max-width: 100vw;
  background: var(--primary);
  z-index: 9990;
  transform: translateX(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.34s cubic-bezier(0.7,0,0.3,1), opacity 0.22s;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
  box-shadow: 8px 0 32px 8px rgba(0,0,0,0.18);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--accent);
  font-size: 2.25rem;
  align-self: flex-end;
  margin: 22px 24px;
  cursor: pointer;
  transition: color 0.2s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  color: var(--secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 40px 36px 30px 36px;
}
.mobile-nav a {
  color: var(--accent);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  padding: 14px 0px;
  width: 100%;
  border-radius: 9px;
  transition: background 0.2s, color 0.2s;
}
.mobile-nav a.cta-btn {
  background: var(--secondary);
  color: var(--primary);
  font-weight: 900;
  font-size: 1.25rem;
  padding: 13px 32px;
  border-radius: 36px;
  align-self: flex-start;
  margin-top: 16px;
  box-shadow: 0 3px 14px 0 rgba(41,76,59,0.10);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.mobile-nav a.cta-btn:hover, .mobile-nav a.cta-btn:focus {
  background: var(--accent);
  color: var(--primary);
}
.mobile-nav a:not(.cta-btn):hover, .mobile-nav a:not(.cta-btn):focus {
  background: var(--secondary);
  color: var(--primary);
}

/* Show/hide desktop/mobile nav */
@media (max-width: 992px) {
  nav.main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 993px) {
  .mobile-menu {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: none;
  }
}

/* ====================
   HERO STYLES
   ==================== */
.hero {
  background: var(--secondary);
  padding: 60px 0 70px 0;
  min-height: 330px;
  display: flex;
  align-items: center;
  box-shadow: 0 4px 18px 0 rgba(41,76,59,0.04);
  margin-bottom: 0;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 18px;
}
.hero h1 {
  color: var(--primary);
  font-size: 2.8rem;
  font-weight: 900;
  margin-bottom: 20px;
}
.hero p {
  color: var(--primary);
  font-size: 1.25rem;
  max-width: 600px;
  margin-bottom: 14px;
}

/* ====================
   CTA BUTTONS
   ==================== */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: var(--accent);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  letter-spacing: 0.5px;
  font-size: 1.12rem;
  padding: 14px 36px;
  border-radius: 40px;
  border: 2px solid var(--primary);
  box-shadow: 0 2px 8px 0 rgba(41,76,59,0.12);
  margin-top: 10px;
  transition: background 0.2s, color 0.17s, box-shadow 0.25s, border 0.2s;
  text-transform: uppercase;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--secondary);
  color: var(--primary);
  border-color: var(--secondary);
  box-shadow: 0 5px 18px 0 rgba(41,76,59,0.18);
}

/* ====================
   FEATURES & CARDS
   ==================== */
.features .feature-grid, .about-vision ul, .unique-features ul, .benefits ul, .course-program ul, .course-features ul, .event-listings ul, .weekly-schedule ul, .booking-info ul, .contact-details ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
  margin-bottom: 14px;
}
.features .feature-grid, .about-vision ul, .unique-features ul {
  justify-content: flex-start;
}
.feature-item img {
  width: 38px;
  height: 38px;
  margin-bottom: 4px;
  border-radius: 8px;
  background: var(--secondary);
  padding: 8px;
}
.feature-item h3 {
  color: var(--primary);
  font-size: 1.17rem;
  font-weight: bold;
  margin-bottom: 4px;
}
.feature-item p {
  font-size: 1rem;
  color: var(--primary);
}

.card {
  background: var(--white);
}

/* ====================
   TESTIMONIALS
   ==================== */
.testimonials {
  background: var(--white);
  margin-bottom: 0;
  padding: 64px 0;
}
.testimonials .content-wrapper {
  align-items: flex-start;
  gap: 40px;
}
.testimonial-card {
  background: var(--accent);
  color: var(--primary);
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1.2rem;
  border-radius: 18px;
  box-shadow: 0 2px 12px 0 rgba(41,76,59,0.15);
  margin-bottom: 20px;
  padding: 24px 32px 20px 32px;
  max-width: 420px;
  min-width: 250px;
  transition: box-shadow 0.19s, transform 0.18s;
}
.testimonial-card blockquote {
  color: var(--primary);
  border-left: 4px solid var(--secondary);
  padding-left: 16px;
  font-size: 1.05rem;
  background: none;
}
.testimonial-card span {
  font-size: 1rem;
  color: var(--primary);
  font-weight: bold;
  margin-top: 8px;
}
.testimonial-card:hover {
  box-shadow: 0 8px 22px 0 rgba(41,76,59,0.14);
  transform: translateY(-2px) scale(1.01);
}

/* ====================
   SECTION CTAs
   ==================== */
.cta-signup {
  background: var(--secondary);
  padding: 54px 0;
}
.cta-signup .content-wrapper {
  align-items: flex-start;
  gap: 16px;
}
.cta-signup h2 {
  color: var(--primary);
  margin-bottom: 16px;
  font-size: 2.2rem;
}

/* ====================
   FOOTER
   ==================== */
footer {
  background: var(--primary);
  color: var(--accent);
  font-size: 1rem;
  padding: 36px 0 0 0;
  margin-top: 60px;
}
.footer-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  padding-bottom: 18px;
}
.footer-logo img {
  height: 48px;
  width: auto;
  display: block;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
}
.footer-nav a {
  color: var(--accent);
  font-weight: 900;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  transition: color 0.2s, text-decoration 0.2s;
  padding: 4px 0;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--secondary);
  text-decoration: underline;
}
.footer-contact span {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 4px;
}
.footer-contact img {
  width: 20px;
  height: 20px;
  margin-right: 6px;
  opacity: 0.8;
}
.copyright-row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  border-top: 1px solid #436b598a;
  padding: 8px 0 18px 0;
  margin-top: 12px;
  color: var(--secondary);
  font-size: 0.95rem;
}

/* ====================
   TABLE STYLES (Membership)
   ==================== */
.membership-pricing table {
  border-collapse: collapse;
  width: 100%;
  margin: 20px 0 26px 0;
  box-shadow: var(--shadow);
  border-radius: 16px;
  overflow: hidden;
  background: var(--white);
}
.membership-pricing th,
.membership-pricing td {
  text-align: left;
  padding: 18px 16px;
  font-size: 1rem;
}
.membership-pricing th {
  background: var(--secondary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  color: var(--primary);
  border-bottom: 2px solid #294c3b2d;
}
.membership-pricing tr:not(:first-child) {
  border-top: 1px solid #294c3b10;
}
.membership-pricing td {
  color: var(--primary);
}
.membership-pricing tr:nth-child(even) td {
  background: #f8fdfb;
}

/* ====================
   FAQ / Accordions
   ==================== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.faq-item {
  background: var(--accent);
  border-radius: 10px;
  box-shadow: var(--shadow);
  padding: 22px 20px;
}
.faq-item h3 {
  font-size: 1.18rem;
  color: var(--primary);
  margin-bottom: 9px;
}
.faq-item p {
  font-size: 1rem;
  color: var(--primary);
}

/* ====================
   CONTACT DETAILS
   ==================== */
.contact-details ul {
  flex-direction: column;
  gap: 18px;
}
.contact-details li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.08rem;
}
.contact-details img {
  width: 22px;
  height: 22px;
}
.contact-form-info a {
  color: var(--primary);
  font-weight: 700;
  transition: color 0.17s;
}
.contact-form-info a:hover, .contact-form-info a:focus {
  color: var(--secondary);
}

/* ====================
   TEAM-GRID
   ==================== */
.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.team-profile {
  background: var(--white);
  border-radius: 13px;
  box-shadow: var(--shadow);
  padding: 24px 18px 18px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 170px;
  max-width: 240px;
  gap: 13px;
}
.team-profile img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--secondary);
  box-shadow: 0 0 0 5px #9ad9bc22;
  padding: 6px;
}
.team-profile h3 {
  font-size: 1.08rem;
  margin-bottom: 4px;
}
.team-profile p {
  text-align: center;
  font-size: 0.96rem;
  color: var(--primary);
}

/* ====================
   THANK YOU PAGE
   ==================== */
.thank-you-confirmation .content-wrapper {
  align-items: center;
  justify-content: center;
}
.thank-you-confirmation h1 {
  font-size: 2.2rem;
  margin-bottom: 22px;
  color: var(--primary);
}
.thank-you-confirmation p {
  font-size: 1.24rem;
  text-align: center;
  margin-bottom: 16px;
  color: var(--primary);
}


/* ====================
   COOKIE CONSENT BANNER
   ==================== */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: var(--primary);
  color: var(--accent);
  display: none;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 24px;
  z-index: 30000;
  box-shadow: 0 -2px 18px 0 rgba(41,76,59,0.11);
  font-size: 1.05rem;
  animation: cookieFadeIn 0.75s cubic-bezier(.28,.84,.42,1) forwards;
  transition: transform 0.3s, opacity 0.3s;
}
@keyframes cookieFadeIn {
  0% { opacity: 0; transform: translateY(90px); }
  100% { opacity: 1; transform: translateY(0); }
}
#cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(120px);
}
#cookie-banner .cookie-btn {
  background: var(--secondary);
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.5px;
  border-radius: 28px;
  padding: 10px 26px;
  margin-left: 8px;
  border: none;
  margin-top: 4px;
  transition: background 0.2s, color 0.2s, box-shadow 0.17s;
  box-shadow: 0 1px 4px 0 rgba(41,76,59,0.07);
}
#cookie-banner .cookie-btn:hover, #cookie-banner .cookie-btn:focus {
  background: var(--accent);
  color: var(--primary);
}
#cookie-banner .cookie-btn.reject {
  background: var(--error);
  color: var(--white);
}
#cookie-banner .cookie-btn.reject:hover, #cookie-banner .cookie-btn.reject:focus {
  background: #b52c2c;
}

#cookie-banner .cookie-btn.settings {
  background: transparent;
  color: var(--secondary);
  border: 2px solid var(--secondary);
  margin-left: 0;
}
#cookie-banner .cookie-btn.settings:hover, #cookie-banner .cookie-btn.settings:focus {
  background: var(--secondary);
  color: var(--primary);
}

#cookie-banner p {
  color: var(--accent);
  font-size: 1.05rem;
}

/* COOKIE MODAL */
#cookie-modal-overlay {
  display: none;
  position: fixed;
  z-index: 40000;
  left: 0;
  top: 0;
  min-width: 100vw;
  min-height: 100vh;
  background: rgba(41,76,59,0.75);
  align-items: center;
  justify-content: center;
  padding: 32px 10px;
}
#cookie-modal-overlay.open {
  display: flex;
  animation: cookieModalFadeIn 0.28s cubic-bezier(.28,.84,.42,1) forwards;
}
@keyframes cookieModalFadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
#cookie-modal {
  min-width: 330px;
  background: var(--white);
  color: var(--primary);
  border-radius: 16px;
  box-shadow: 0 10px 64px 0 rgba(41,76,59,0.19);
  padding: 36px 30px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  max-width: 420px;
  position: relative;
  animation: cookieModalPop 0.36s cubic-bezier(.28,.84,.42,1);
}
@keyframes cookieModalPop {
  0% { transform: scale(0.92); opacity: 0; }
  85% { transform: scale(1.03); opacity: 1; }
  100% { transform: scale(1); }
}
#cookie-modal h2 {
  color: var(--primary);
  margin-bottom: 8px;
  text-align: left;
  font-size: 1.22rem;
  font-weight: 900;
}
#cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 5px;
}
#cookie-modal .cookie-category label {
  font-weight: 700;
  color: var(--primary);
  font-size: 1rem;
}
#cookie-modal .cookie-toggle {
  margin-right: 4px;
}
#cookie-modal .cookie-save-btn {
  background: var(--secondary);
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  border-radius: 24px;
  padding: 9px 34px;
  border: none;
  align-self: flex-end;
  margin-top: 12px;
  font-size: 1rem;
  transition: background 0.18s, color 0.21s;
}
#cookie-modal .cookie-save-btn:hover, #cookie-modal .cookie-save-btn:focus {
  background: var(--primary);
  color: var(--accent);
}
#cookie-modal .cookie-close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  color: var(--primary);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.2s;
}
#cookie-modal .cookie-close-btn:hover, #cookie-modal .cookie-close-btn:focus {
  color: var(--secondary);
}
#cookie-modal p {
  color: var(--primary);
  font-size: 1rem;
  margin-bottom: 4px;
}

/* Essential cookies always enabled, disabled style */
.cookie-category .essential-toggle:disabled {
  opacity: 0.66;
  cursor: not-allowed;
}

/* ================
   MEDIA QUERIES
   ================ */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  h1 {
    font-size: 2.1rem;
  }
  h2 {
    font-size: 1.46rem;
  }
  .container {
    padding: 0 10px;
  }
  .header-flex {
    flex-wrap: wrap;
    gap: 18px;
  }
  .hero {
    padding: 32px 0 36px 0;
    min-height: 180px;
  }
  .content-wrapper {
    gap: 18px;
  }
  .features .feature-grid, .about-vision ul, .unique-features ul, .benefits ul, .course-program ul, .course-features ul, .event-listings ul, .weekly-schedule ul, .booking-info ul, .contact-details ul {
    flex-direction: column;
    gap: 18px;
  }
  .testimonials .content-wrapper {
    gap: 18px;
  }
  .section {
    margin-bottom: 34px;
    padding: 22px 5px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .footer-flex {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
    padding-bottom: 12px;
  }
  .copyright-row {
    justify-content: flex-start;
    font-size: 0.92rem;
    padding: 6px 0 13px 0;
  }
}
@media (max-width: 512px) {
  .container {
    padding: 0 3vw;
  }
  .hero h1, h1 {
    font-size: 1.44rem;
  }
  h2 {
    font-size: 1.15rem;
  }
  .testimonials .content-wrapper, .content-wrapper {
    gap: 13px;
  }
  .section {
    padding: 12px 0px;
    margin-bottom: 18px;
  }
  .footer-flex {
    gap: 8px;
  }
  .footer-logo img {
    height: 36px;
  }
}

/* ================
   MICRO-INTERACTIONS
   ================ */
.cta-btn, .cookie-btn, .cookie-save-btn {
  transition: background 0.2s, color 0.2s, box-shadow 0.19s, border 0.2s, transform 0.18s;
}
.cta-btn:active, .cookie-btn:active {
  transform: scale(0.98);
}
.card:active, .feature-item:active, .testimonial-card:active, .team-profile:active {
  transform: scale(0.98);
}

/* ================
   HIGH CONTRAST & ACCESSIBILITY
   ================ */
.testimonial-card, .faq-item, .contact-details li, .card, .feature-item, .team-profile {
  color: var(--primary);
  background: var(--accent);
}
.testimonial-card blockquote,
.testimonial-card span {
  color: var(--primary);
}

/* ================
   TRANSITIONS
   ================ */
*, *::before, *::after {
  box-sizing: inherit;
  transition: background 0.2s, color 0.17s, box-shadow 0.25s, border 0.17s;
}

/* ================
   PRINT (for policies)
   ================ */
@media print {
  header, .mobile-menu, .cta-signup, footer, #cookie-banner { display: none !important; }
  html, body, .container, .content-wrapper { background: var(--white) !important; color: var(--primary) !important; }
}
