/* === 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,
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;
}

body {
  line-height: 1.5;
  background: #FFF7EB;
  color: #2D2926;
  font-family: 'Open Sans', Arial, sans-serif;
  min-height: 100vh;
}

*, *:before, *:after {
  box-sizing: inherit;
}

ol, ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  height: auto;
}

button, input, select, textarea {
  font-family: inherit;
  background: none;
  border: none;
  outline: none;
  color: inherit;
}

/* === Vintage Retro Theme Colors === */
:root {
  --primary: #003366;
  --secondary: #F4B400;
  --accent: #FFFFFF;
  --retro-cream: #FFF7EB;
  --retro-brown: #704214;
  --retro-red: #C1440E;
  --retro-dark-green: #226057;
  --retro-blue: #5E8CA4;
  --retro-orange: #DC7633;
  --retro-shadow: rgba(112, 66, 20, 0.14);
  --retro-card: #FEF1E0;
  --retro-muted: #FBE7C6;
  --heading-font: 'Montserrat', 'Futura', 'Open Sans', Arial, sans-serif;
  --body-font: 'Open Sans', Arial, sans-serif;
}


/* === Typography === */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  font-weight: bold;
  color: var(--primary);
  letter-spacing: 1px;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 14px;
}
h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}
h4, h5, h6 {
  font-size: 1.1rem;
}

p, li, address, blockquote {
  font-family: var(--body-font);
  color: #2D2926;
  font-size: 1rem;
  margin-bottom: 12px;
}

blockquote {
  font-size: 1.1rem;
  font-style: italic;
  padding: 18px 32px;
  border-left: 6px solid var(--retro-brown);
  background: var(--retro-muted);
  margin: 20px 0 20px 0;
  border-radius: 0 18px 18px 0;
}

/* === Main Layout Containers === */
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 18px;
}
main {
  flex: 1 0 auto;
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

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

/* === Header & Navigation === */
header {
  background: var(--retro-muted);
  box-shadow: 0 4px 12px var(--retro-shadow);
  position: sticky;
  top: 0; z-index: 100;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  gap: 24px;
}
header img {
  height: 48px;
  width: auto;
  display: block;
}
nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}
nav a {
  font-family: var(--heading-font);
  font-size: 1rem;
  color: var(--primary);
  padding: 7px 12px;
  border-radius: 14px;
  transition: background 0.22s, color 0.17s, box-shadow 0.2s;
  position: relative;
}
nav a:hover,
nav a:focus {
  background: var(--secondary);
  color: var(--primary);
  box-shadow: 0 2px 4px var(--retro-shadow);
}

.btn-primary {
  background: var(--secondary);
  color: var(--primary);
  font-family: var(--heading-font);
  border-radius: 18px;
  padding: 12px 32px;
  font-size: 1.15rem;
  font-weight: bold;
  letter-spacing: 1px;
  border: 2px solid var(--retro-brown);
  box-shadow: 0 3px 16px rgba(244,180,0,.10);
  transition: background 0.25s, color 0.24s, box-shadow 0.21s, transform 0.13s;
  cursor: pointer;
  margin-left: 22px;
  text-shadow: 1px 1px 0 #fff7eb33;
}
.btn-primary:hover,
.btn-primary:focus {
  background: var(--primary);
  color: var(--secondary);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 18px var(--retro-shadow);
}

/* === Hamburger & Mobile Nav === */
.mobile-menu-toggle {
  display: none;
  font-size: 2.2rem;
  background: var(--secondary);
  color: var(--primary);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--primary);
  cursor: pointer;
  position: relative;
  transition: background 0.24s, color 0.18s, box-shadow 0.18s;
  z-index: 1202;
}
.mobile-menu-toggle:hover {
  background: var(--primary);
  color: var(--secondary);
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--primary);
  color: var(--accent);
  z-index: 1201;
  transform: translateX(-100vw);
  transition: transform 0.35s cubic-bezier(.7,.01,.18,.97);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px 28px;
  box-shadow: 12px 0 38px 0 #0003;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2rem;
  background: var(--retro-red);
  color: #fff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  margin-bottom: 32px;
  border: none;
  cursor: pointer;
  align-self: flex-end;
  transition: background 0.2s;
}
.mobile-menu-close:hover {
  background: var(--secondary);
  color: var(--primary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}
.mobile-nav a {
  color: var(--accent);
  font-size: 1.3rem;
  background: none;
  padding: 10px 0 10px 0;
  border-left: 6px solid transparent;
  border-radius: 0;
  transition: background 0.15s, border-color 0.2s, padding 0.15s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  border-left: 6px solid var(--secondary);
  background: var(--retro-blue);
  padding-left: 10px;
}

@media (max-width: 1024px) {
  header .container {
    gap: 10px;
  }
  nav {
    gap: 10px;
  }
  .btn-primary {
    margin-left: 7px;
  }
}

@media (max-width: 900px) {
  header .container nav, header .container .btn-primary {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

@media (min-width: 901px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}

/* === Hero Section === */
.hero {
  background: var(--secondary);
  background-repeat: repeat;
  background-image: repeating-linear-gradient(120deg,rgba(244,180,0,0.08) 0,rgba(0,51,102,0.05) 10%,rgba(244,180,0,0.08) 20%);
  padding: 60px 0 60px 0;
  min-height: 340px;
  display: flex;
  align-items: center;
  margin-bottom: 48px;
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 20px;
  max-width: 640px;
}
.hero h1 {
  color: var(--primary);
  font-size: 2.8rem;
  letter-spacing: 1.2px;
  margin-bottom: 10px;
  font-family: var(--heading-font);
  text-shadow: 2px 2px 0 #fff9;
}
.hero .subheadline {
  color: var(--retro-brown);
  font-family: var(--body-font);
  font-size: 1.2rem;
  background: var(--retro-card);
  border-left: 5px solid var(--retro-dark-green);
  padding: 7px 22px;
  border-radius: 0 17px 17px 0;
  margin-bottom: 18px;
}


/* === CTA Section === */
.cta-section {
  background: var(--retro-blue);
  color: var(--accent);
  border-top: 4px dashed var(--secondary);
  border-bottom: 4px solid var(--retro-brown);
  box-shadow: 0 10px 32px #00336622;
  padding: 44px 0;
  margin-bottom: 0;
}
.cta-section h2,
.cta-section p {
  color: var(--accent);
}
.cta-section .btn-primary {
  background: var(--accent);
  color: var(--primary);
  border: 2px solid var(--retro-brown);
  margin-left: 0;
  margin-top: 16px;
}
.cta-section .btn-primary:hover {
  background: var(--secondary);
  color: var(--primary);
}

/* === Flex Row Content Grids === */
/* .feature-grid, .course-cards, .event-list, .coach-bios, .impact-statistics, .card-container, .content-grid, etc. */
.feature-grid, .course-cards, .event-list, .coach-bios, .impact-statistics, .card-container, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin: 16px 0 10px 0;
}

.feature {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  background: var(--retro-card);
  border: 3px solid var(--retro-muted);
  border-radius: 20px 20px 60px 20px;
  box-shadow: 0 2px 8px var(--retro-shadow);
  padding: 28px 20px 24px 20px;
  min-width: 200px;
  max-width: 250px;
  flex: 1 1 220px;
  margin-bottom: 20px;
  transition: transform 0.16s, box-shadow 0.18s;
  position: relative;
}
.feature:hover {
  box-shadow: 0 10px 32px var(--retro-shadow);
  background: var(--secondary);
  transform: translateY(-3px) scale(1.025);
}
.feature img {
  height: 36px;
  width: 36px;
  margin-bottom: 12px;
}
.feature h3 {
  color: var(--retro-brown);
  font-size: 1.23rem;
}
.feature p {
  color: var(--primary);
  font-size: .97rem;
}

/* Cards and Content Blocks */
.card {
  margin-bottom: 20px;
  padding: 32px 18px;
  border-radius: 24px 24px 44px 16px;
  background: var(--retro-card);
  box-shadow: 0 2px 16px var(--retro-shadow);
  border: 2px solid var(--retro-muted);
  position: relative;
  z-index: 1;
  transition: box-shadow 0.2s, transform 0.17s;
}
.card:hover {
  box-shadow: 0 8px 32px #70421417;
  transform: translateY(-4px) scale(1.01);
}

.course-card {
  background: var(--retro-card);
  padding: 26px 20px;
  border-radius: 19px 19px 44px 13px;
  box-shadow: 0 1px 8px var(--retro-shadow);
  border: 2px solid var(--retro-muted);
  flex: 1 1 280px;
  min-width: 220px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.16s, background 0.16s;
}
.course-card:hover {
  background: var(--secondary);
  box-shadow: 0 6px 28px var(--retro-shadow);
}

.course-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.course-item {
  background: var(--retro-card);
  border-radius: 20px 38px 20px 20px;
  border: 2px solid var(--retro-blue);
  box-shadow: 0 2px 10px var(--retro-shadow);
  padding: 22px 16px 16px 20px;
  min-width: 200px;
  max-width: 320px;
  flex: 1 1 280px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.17s;
}
.course-item:hover {
  box-shadow: 0 10px 24px var(--retro-shadow);
  background: var(--secondary);
}

.event-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.event-item {
  background: var(--retro-card);
  border-radius: 16px 16px 60px 20px;
  border: 2px solid var(--retro-orange);
  box-shadow: 0 2px 11px var(--retro-shadow);
  padding: 24px 20px 22px 20px;
  min-width: 200px;
  max-width: 320px;
  flex: 1 1 280px;
  margin-bottom: 20px;
  transition: box-shadow 0.14s, background 0.15s;
}
.event-item:hover {
  background: var(--retro-orange);
  box-shadow: 0 8px 28px #7042143b;
}

.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

/* === Testimonial Card === */
.testimonial-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  padding: 24px 28px 28px 28px;
  margin-bottom: 20px;
  border-radius: 28px 22px 14px 36px;
  background: #fffdfc;
  border: 3px solid var(--retro-blue);
  box-shadow: 0 2px 16px var(--retro-shadow);
  max-width: 420px;
  position: relative;
  transition: box-shadow 0.22s, border-color 0.19s;
}
.testimonial-card h3 {
  color: var(--retro-brown);
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.testimonial-card p {
  color: var(--primary);
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}
.testimonial-meta {
  font-size: 0.98rem;
  color: var(--retro-dark-green);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}
.testimonial-meta strong {
  color: var(--retro-red);
}
.testimonial-card img {
  display: inline-block;
  height: 21px;
  width: auto;
  margin-top: 1px;
}
.testimonial-card:hover {
  box-shadow: 0 6px 34px var(--retro-shadow);
  border-color: var(--secondary);
}

/* === Coach Cards === */
.coach-bios {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.coach-card {
  background: var(--retro-card);
  border-radius: 20px 24px 44px 12px;
  border: 2px solid var(--retro-blue);
  box-shadow: 0 1px 10px var(--retro-shadow);
  padding: 22px 18px 14px 24px;
  min-width: 200px;
  max-width: 320px;
  flex: 1 1 280px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 11px;
  transition: box-shadow 0.17s, border-color 0.14s;
}
.coach-card:hover {
  border-color: var(--secondary);
  box-shadow: 0 6px 22px var(--retro-shadow);
}
.credentials-list {
  font-size: .97rem;
  color: var(--retro-brown);
  margin-left: 0;
  margin-top: 6px;
  padding-left: 23px;
  list-style-type: disc;
}
.credentials-list li {
  margin-bottom: 5px;
  color: var(--retro-dark-green);
}

.value-list {
  font-family: var(--body-font);
  color: var(--retro-dark-green);
  margin-bottom: 20px;
  padding-left: 16px;
}
.value-list li {
  padding-left: 10px;
  margin-bottom: 10px;
  font-size: 1.02rem;
}

.module-overview {
  margin-top: 14px;
  margin-bottom: 0px;
  font-family: var(--body-font);
  color: var(--primary);
}
.module-overview li {
  margin-bottom: 10px;
  padding-left: 12px;
  border-left: 3px solid var(--retro-orange);
  padding-bottom: 4px;
  background: var(--retro-muted);
  border-radius: 0 7px 7px 0;
}

.unique-features {
  padding-left: 18px;
  margin-bottom: 16px;
}
.unique-features li {
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--retro-brown);
}
.skills-outcomes, .coaching-benefits, .outcomes, .value-proposition {
  background: var(--retro-blue);
  color: var(--accent);
  border-radius: 16px 28px 7px 23px;
  padding: 18px 22px 14px 18px;
  margin-top: 18px;
  margin-bottom: 18px;
}
.skills-outcomes h3, .coaching-benefits h3, .outcomes h3, .value-proposition h3 {
  color: var(--accent);
}
.skills-outcomes li,
.coaching-benefits li,
.outcomes li {
  color: var(--accent);
  padding-left: 9px;
  font-size: 1.03rem;
  margin-bottom: 8px;
}

.impact-statistics {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 24px 0 0 0;
}
.impact-statistics ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  flex-direction: row;
}
.impact-statistics li {
  background: var(--retro-card);
  padding: 22px 22px 18px 18px;
  border-radius: 15px 30px 12px 40px;
  border: 2px solid var(--retro-orange);
  box-shadow: 0 2px 10px var(--retro-shadow);
  font-family: var(--heading-font);
  font-size: 1.15rem;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.impact-statistics img {
  width: 30px;
  height: 30px;
}

.text-section {
  margin-bottom: 16px;
}

.text-image-section {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 20px;
}

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

/* === Address, Contact Details, Business Hours === */
address {
  font-style: normal;
  font-size: .95rem;
  color: var(--retro-brown);
  line-height: 1.7;
  margin-top: 18px;
}
address img {
  vertical-align: middle;
  height: 20px;
  margin-right: 5px;
}
.contact-details, .business-hours {
  margin-bottom: 24px;
  background: var(--retro-muted);
  border-radius: 20px 20px 30px 10px;
  padding: 20px 24px;
  box-shadow: 0 1px 6px #70421414;
}
.business-hours img {
  height: 40px;
  margin: 10px 0 0 0;
  border-radius: 9px;
}

.confirmation-message {
  background: var(--retro-card);
  border-radius: 14px 27px 24px 16px;
  padding: 28px 18px;
  margin: 16px 0 12px 0;
  box-shadow: 0 2px 10px var(--retro-shadow);
  display: flex;
  flex-direction: column;
  gap: 13px;
}

/* === Footer === */
footer {
  background: var(--retro-brown);
  color: var(--accent);
  padding: 35px 0 28px 0;
}
footer .container {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 40px;
  justify-content: space-between;
  flex-wrap: wrap;
}
footer img {
  width: 44px; height: auto;
  margin-bottom: 15px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
footer nav a {
  color: var(--accent);
  font-family: var(--heading-font);
  font-size: 1.1rem;
  padding: 0;
  background: none;
  border-radius: 0;
  font-weight: 600;
  opacity: 0.86;
  transition: opacity 0.14s, color 0.15s;
}
footer nav a:hover,
footer nav a:focus {
  color: var(--secondary);
  opacity: 1;
}
footer address a {
  color: var(--secondary);
  font-weight: 500;
  text-decoration: underline;
}
footer address a:hover,
footer address a:focus {
  color: #ffe1a6;
}

/* === Cookie Consent Banner & Modal === */
.cookie-banner {
  position: fixed;
  left: 0; bottom: 0; width: 100vw;
  background: var(--retro-brown);
  color: var(--accent);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  padding: 20px 24px 32px 24px;
  box-shadow: 0 -4px 26px #70421445;
  z-index: 20000;
  font-size: 1.02rem;
  font-family: var(--body-font);
  transition: transform 0.27s cubic-bezier(.72,.08,.41,1.01), opacity 0.2s;
}
.cookie-banner.hide {
  transform: translateY(150%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
  max-width: 820px;
}
.cookie-banner-buttons {
  display: flex;
  gap: 13px;
}
.cookie-btn {
  border-radius: 18px;
  background: var(--retro-orange);
  color: var(--retro-brown);
  padding: 9px 22px;
  font-family: var(--heading-font);
  border: none;
  font-size: 1rem;
  transition: background 0.18s, color 0.16s, box-shadow 0.19s, transform 0.13s;
  font-weight: bold;
  cursor: pointer;
}
.cookie-btn:hover,
.cookie-btn:focus {
  background: var(--secondary);
  color: var(--primary);
  box-shadow: 0 2px 11px #fff7eb44;
  transform: scale(1.03);
}
.cookie-btn.settings {
  background: var(--retro-cream);
  color: var(--retro-brown);
  border: 2px solid var(--retro-brown);
}
.cookie-btn.reject {
  background: var(--retro-brown);
  color: var(--accent);
  border: 2px solid var(--accent);
}
.cookie-btn.reject:hover {
  background: var(--retro-red);
  color: #fff;
  border: 2px solid var(--retro-red);
}

/* Cookie Preferences Modal */
.cookie-modal-overlay {
  position: fixed;
  z-index: 20001;
  inset: 0;
  background: rgba(0,0,0,0.68);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.27s, visibility 0.18s;
}
.cookie-modal {
  background: var(--retro-card);
  color: var(--primary);
  border-radius: 28px 21px 31px 16px;
  min-width: 320px;
  max-width: 400px;
  padding: 34px 25px 28px 25px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 8px 40px #70421444;
  font-family: var(--body-font);
}
.cookie-modal h2 {
  font-size: 1.4rem;
  color: var(--primary);
}
.cookie-pref-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px dashed var(--retro-muted);
}
.cookie-toggle {
  accent-color: var(--secondary);
  width: 22px;
  height: 22px;
}
.cookie-modal .cookie-btn {
  margin-top: 13px;
  width: 100%;
  background: var(--retro-orange);
  color: var(--retro-brown);
  border: none;
}
.cookie-modal .cookie-btn:hover{
  background: var(--retro-brown);
  color: #fff;
}
.cookie-modal-close {
  position: absolute;
  top: 11px;
  right: 16px;
  font-size: 1.5rem;
  background: var(--retro-red);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  cursor: pointer;
  transition: background 0.16s, color 0.17s;
}
.cookie-modal-close:hover {
  background: var(--secondary);
  color: var(--primary);
}

/* === Spacing, Layout, Micro-interactions & Patterned Effects === */
.section {
  margin-bottom: 60px !important;
  padding: 40px 20px !important;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
}
.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;
}

/* ========== RESPONSIVE DESIGN (Mobile-first) ============= */
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.35rem; }
  h3 { font-size: 1.09rem; }

  .container {
    padding-left: 6px; padding-right: 6px;
  }
  .hero { padding: 36px 0; min-height: 190px; }
  .section { padding: 32px 6px; margin-bottom: 38px !important; }

  .feature-grid, .course-cards, .event-list, .coach-bios, .impact-statistics, .testimonial-slider, .card-container, .content-grid {
    flex-direction: column;
    gap: 16px !important;
    align-items: stretch;
  }
  .feature, .event-item, .course-card, .course-item, .coach-card, .testimonial-card, .card {
    min-width: unset;
    max-width: unset;
  }
  .footer .container, footer .container {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
  .testimonial-card {
    padding: 18px 10px;
    gap: 10px;
    max-width: unset;
  }
  .impact-statistics ul {
    flex-direction: column;
    gap: 11px !important;
  }
  .hero .container, .cta-section .container {
    padding: 0 4px;
  }
  .hero h1 { font-size: 1.45rem; }
  .cta-section {
    padding: 18px 5px;
    border-top: 2px dashed var(--secondary);
    border-bottom: 2px solid var(--retro-brown);
  }
  .cookie-banner-content, .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
    font-size: .98rem;
  }
  .cookie-banner-buttons {
    flex-direction: column;
    gap: 8px;
    width: 100%;
  }
}

@media (max-width: 500px) {
  .hero h1 { font-size: 1.2rem; }
  .hero .subheadline { font-size: .95rem; }
}

/* === Animations & Micro-interactions === */
.btn-primary, .cookie-btn {
  transition: background 0.23s, color 0.20s, box-shadow 0.22s, transform 0.13s;
}
.card, .course-card, .feature, .event-item, .testimonial-card, .coach-card {
  transition: box-shadow 0.21s, background 0.19s;
}
.card:hover, .course-card:hover, .feature:hover, .event-item:hover, .testimonial-card:hover, .coach-card:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 22px #6c471326;
}

/* === Misc Classes, Accessibility & Fixes === */
:focus-visible {
  outline: 3px dashed var(--secondary);
  outline-offset: 2px;
}

::-webkit-scrollbar {
  width: 8px;
  background: var(--retro-muted);
}
::-webkit-scrollbar-thumb {
  background: var(--retro-brown);
  border-radius: 8px;
}

/* Hide visually for toggleable content */
.visually-hidden {
  position: absolute !important;
  height: 1px; width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

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