/* CSS RESET AND 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 {
  height: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  background: #F7F7F2;
  color: #303032;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
input, button, textarea, select {
  font-family: inherit;
  font-size: inherit;
}
a {
  color: #11406D;
  text-decoration: none;
  transition: color 0.25s;
}
a:focus {
  outline: 2px dotted #F2B134;
}

/* VARIABLES + FALLBACKS */
:root {
  --primary: #11406D;
  --secondary: #F2B134;
  --accent: #F7F7F2;
  --danger: #c5412e;
  --text-dark: #222;
  --text-light: #fff;
  --card-bg: #fff;
  --shadow: 0 2px 24px 0 rgba(17,64,109,0.07), 0 1.5px 6px rgba(190,157,56,0.04);
  --radius: 18px;
}

/* TYPOGRAPHY */
h1, .h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  color: var(--primary);
  font-size: 2rem;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
h2, .h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: 18px;
}
h3, .h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: var(--primary);
  font-size: 1.15rem;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--primary);
  margin-bottom: 8px;
}
p, li, address {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  color: #303032;
}
strong, b {
  font-weight: 700;
}
ul, ol {
  margin-left: 22px;
  margin-bottom: 14px;
}
li {
  margin-bottom: 8px;
}
blockquote {
  display: block;
  padding: 18px 20px;
  background: #F2B13411;
  border-left: 4px solid #F2B134;
  border-radius: var(--radius);
  margin: 18px 0 18px 0;
  color: var(--primary);
  font-style: italic;
}

/* BUTTONS */
.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: background 0.23s, color 0.23s, box-shadow 0.23s, transform 0.17s;
  box-shadow: var(--shadow);
  outline: none;
  margin: 10px 10px 10px 0;
  text-align: center;
  text-decoration: none;
}
.btn-primary {
  background: var(--secondary);
  color: var(--primary);
  border: 2px solid var(--secondary);
}
.btn-secondary {
  background: var(--primary);
  color: var(--text-light);
  border: 2px solid var(--primary);
}
.btn-primary:hover, .btn-primary:focus {
  background: #FFD874;
  color: var(--primary);
  border: 2px solid #FFD874;
  transform: translateY(-1px) scale(1.03);
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #163E62;
  color: var(--secondary);
  border: 2px solid #FFD874;
  transform: translateY(-1px) scale(1.03);
}

/* LAYOUT CONTAINER SPACING */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  /* flex container is handled by content-wrapper */
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}

/* FLEX UTILITY CLASSES */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  position: relative;
  padding: 28px 28px 22px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 270px;
}
.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: flex-start;
  gap: 20px;
  padding: 20px;
  background: #fffbe9;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 24px;
  max-width: 520px;
  min-width: 220px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* HEADER / NAVIGATION */
header {
  background: var(--accent);
  box-shadow: 0 2px 12px 0 rgba(17,64,109,0.03);
  padding: 0;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  padding: 18px 15px;
  justify-content: center;
}
.main-nav img {
  height: 40px;
  margin-right: 20px;
  border-radius: 6px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: var(--primary);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: background 0.22s, color 0.22s;
  font-size: 1rem;
}
.main-nav a:hover:not(.btn-primary),
.main-nav a:focus:not(.btn-primary) {
  background: #f7ecd2;
  color: #885710;
}
.main-nav .btn-primary {
  margin-left: 16px;
  margin-right: 0;
  min-width: 110px;
}
.mobile-menu-toggle {
  display: none;
  background: var(--secondary);
  color: var(--primary);
  border: none;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  font-size: 2rem;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  position: absolute;
  right: 18px;
  top: 14px;
  transition: background 0.15s, transform 0.19s;
  z-index: 103;
}
.mobile-menu-toggle:focus {
  outline: 2px solid var(--secondary);
}

/* MOBILE MENU STYLES */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(17,64,109,0.97);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  z-index: 1050;
  transition: transform 0.4s cubic-bezier(.87,-0.01,.06,1.01);
  transform: translateX(-100vw);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--secondary);
  font-size: 2rem;
  margin: 28px 0 0 24px;
  cursor: pointer;
  transition: color 0.21s, transform 0.15s;
  z-index: 1060;
}
.mobile-menu-close:focus {
  outline: 2px solid var(--secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 40px 0 0 36px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.21rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 10px 0;
  border-radius: var(--radius);
  min-width: 180px;
  transition: background 0.22s, color 0.22s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F2B134;
  color: #11406D;
}

/* HERO SECTION */
.hero, .courses-hero, .coaching-hero, .testimonials-hero, .blog-intro, .contact-hero, .thank-you {
  background: linear-gradient(120deg, #ffd98e2c 0%, #f7f7f2 90%);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: 0 6px 32px 0 rgba(244,177,52,0.13);
  padding: 60px 0 36px 0;
}
.hero .container, .courses-hero .container, .coaching-hero .container, .testimonials-hero .container, .blog-intro .container, .thank-you .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero h1, 
.courses-hero h1, 
.coaching-hero h1, 
.testimonials-hero h1,
.blog-intro h1,
.thank-you h1 {
  font-size: 2.5rem;
  max-width: 700px;
  margin-bottom: 18px;
  text-align: center;
}
.hero p, .courses-hero p, .coaching-hero p, .testimonials-hero p, .blog-intro p, .thank-you p {
  font-size: 1.2rem;
  margin-bottom: 16px;
  color: #513804;
  max-width: 520px;
  text-align: center;
}

/* FEATURES SECTION */
.features {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding-top: 36px;
  padding-bottom: 36px;
}
.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: center;
}
.feature-list li {
  background: #f8ebcf;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px 20px;
  width: 250px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  transition: box-shadow 0.21s, transform 0.14s;
}
.feature-list li:hover {
  box-shadow: 0 8px 32px 0 rgba(242,177,52,0.23);
  transform: translateY(-5px) scale(1.015);
}
.feature-list img {
  width: 44px; height: 44px;
}

/* COURSES/SERVICES */
.service-list, .course-catalog {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: center;
}
.service-list li, .course-catalog li {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px 26px 26px 26px;
  width: 285px;
  min-width: 210px;
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 20px;
  transition: box-shadow 0.21s, transform 0.14s;
  position: relative;
}
.service-list li:hover, .course-catalog li:hover {
  box-shadow: 0 8px 32px 0 rgba(17,64,109,0.09);
  transform: translateY(-6px) scale(1.017);
}
.price, .course-price {
  margin-top: 6px;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--secondary);
  font-size: 1.15rem;
}

/* TESTIMONIALS SECTION + CARDS */
.testimonials, .testimonials-list {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding-top: 36px;
  padding-bottom: 36px;
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 18px;
  justify-content: center;
}
.testimonial-card {
  background: #fffbe9;
  color: #2d2503;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 24px;
  padding: 30px 24px 22px 24px;
  max-width: 370px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 1.07rem;
  transition: box-shadow 0.19s, transform 0.14s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px 0 rgba(242,177,52,0.16);
  transform: translateY(-4px) scale(1.012);
}
.testimonial-author {
  font-style: italic;
  font-weight: 600;
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
}
.star-rating {
  color: #fde231;
  font-size: 1.5em;
  letter-spacing: 2px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.testimonials-impact ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 12px;
  margin-bottom: 12px;
}
.testimonials-impact li {
  background: #f8ebcf;
  border-radius: var(--radius);
  padding: 14px 20px;
  min-width: 190px;
  color: #5b4407;
  margin-bottom: 10px;
}

/* BLOG POSTS (post-grid) */
.post-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: flex-start;
}
.post-grid li {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 20px 20px 20px;
  width: 290px;
  min-width: 210px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 20px;
  transition: box-shadow 0.14s, transform 0.14s;
}
.post-grid li:hover {
  box-shadow: 0 7px 28px 0 rgba(17,64,109,0.08);
  transform: translateY(-3px) scale(1.012);
}
.category {
  font-size: 0.95rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--secondary);
  font-weight: bold;
  margin-top: 3px;
}
.categories-tags {
  margin-top: 18px;
  font-size: 1.01rem;
}
.categories-tags b {
  color: var(--primary);
}
.categories-tags a {
  color: var(--secondary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 0 4px;
  transition: color 0.18s;
}
.categories-tags a:hover, .categories-tags a:focus {
  color: #11406D;
  text-decoration: underline;
}

/* CTA SECTION */
.cta, .courses-cta, .coaching-cta {
  background: #fff7ea;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 44px;
  padding: 54px 20px 44px 20px;
}
.cta h2, .courses-cta h2, .coaching-cta h2 {
  font-size: 2rem;
  margin-bottom: 14px;
}
.cta p, .courses-cta p, .coaching-cta p {
  font-size: 1.17rem;
  margin-bottom: 20px;
}

/* ABOUT / TEAM BIOS */
.instructor-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 14px;
  justify-content: flex-start;
}
.instructor-bio {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px 16px;
  width: 265px;
  display: flex;
  flex-direction: column;
  min-width: 180px;
  gap: 8px;
  margin-bottom: 20px;
  transition: box-shadow 0.14s, transform 0.14s;
}
.instructor-bio:hover {
  box-shadow: 0 8px 32px 0 rgba(17,64,109,0.09);
  transform: translateY(-3px) scale(1.011);
}

/* FORMS / TEXT SECTIONS */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 10px;
}
.text-section a {
  color: var(--secondary);
  font-weight: 700;
  word-break: break-all;
  transition: color 0.2s;
}
.text-section a:hover, .text-section a:focus {
  color: var(--primary);
  text-decoration: underline;
}

address {
  font-style: normal;
  color: #4a3a0c;
  margin-top: 8px;
  background: #fffbe9;
  border-radius: var(--radius);
  padding: 18px 22px;
  box-shadow: var(--shadow);
  display: block;
}

/* FOOTER */
.footer {
  background: var(--primary);
  color: var(--text-light);
  border-radius: var(--radius) var(--radius) 0 0;
  margin-top: 44px;
  padding: 44px 0 20px 0;
}
.footer .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 14px;
}
.footer-nav a {
  color: #fff2c7;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  transition: color 0.21s;
}
.footer-nav a:hover {
  color: var(--secondary);
  text-decoration: underline;
}
.footer img {
  height: 36px;
  margin: 12px 0;
}
.footer-contact {
  color: #f7f7f2;
  text-align: center;
  font-size: 1rem;
}
.footer-contact p {
  color: #f7ecd2;
}
.footer-contact strong {
  color: #ffd874;
}
.footer-social {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 7px;
}
.footer-social a {
  background: #fffbe9;
  border-radius: 50%;
  padding: 7px;
  display: flex;
  align-items: center;
  box-shadow: var(--shadow);
  transition: box-shadow 0.14s, transform 0.13s;
}
.footer-social a:hover {
  box-shadow: 0 4px 18px 0 #f2b13444;
  transform: scale(1.07);
}
.footer-social img {
  width: 23px; height: 23px;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  background: #fffbe9;
  color: #222;
  padding: 18px 10px 18px 10px;
  box-shadow: 0 -2px 24px 0 rgba(17,64,109,0.09);
  border-radius: var(--radius) var(--radius) 0 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  z-index: 1500;
  transition: transform 0.35s cubic-bezier(.68,-0.55,.27,1.55), opacity 0.21s;
  opacity: 1;
  transform: translateY(0);
  max-width: 100vw;
}
.cookie-banner.hide {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner__text {
  font-size: 1.05rem;
  flex: 1 1 0;
  margin-right: 12px;
}
.cookie-banner__actions {
  display: flex;
  gap: 14px;
}
.cookie-banner button, .cookie-banner .btn-consent {
  appearance: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 10px 18px;
  border-radius: var(--radius);
  border: none;
  margin: 0 4px;
  cursor: pointer;
  transition: background 0.16s, color 0.14s, box-shadow 0.18s;
  box-shadow: var(--shadow);
}
.cookie-banner .btn-consent.accept {
  background: var(--secondary);
  color: var(--primary);
}
.cookie-banner .btn-consent.reject {
  background: #f2d1b1;
  color: #704116;
}
.cookie-banner .btn-consent.settings {
  background: #fff;
  color: var(--primary);
  border: 1.5px solid #f2b134;
}
.cookie-banner .btn-consent:focus {
  outline: 2px solid var(--secondary);
}
.cookie-banner .btn-consent:hover {
  box-shadow: 0 8px 34px 0 #f2b1341f;
  transform: translateY(-2px) scale(1.03);
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  z-index: 1600;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(17,64,109,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.22s;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fffbe9;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  max-width: 460px;
  width: 96vw;
  padding: 36px 26px 28px 26px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  animation: cookieModalIn 0.43s cubic-bezier(.05,1.03,.21,1) 1;
  position: relative;
}
@keyframes cookieModalIn {
  from {transform: translateY(80px) scale(0.96); opacity: 0;}
  to   {transform: translateY(0) scale(1); opacity: 1;}
}
.cookie-modal .cookie-close {
  position: absolute;
  right: 24px; top: 20px;
  background: none;
  border: none;
  font-size: 1.3rem;
  color: var(--primary);
  cursor: pointer;
  transition: color 0.14s;
}
.cookie-modal .cookie-close:hover, .cookie-modal .cookie-close:focus {
  color: var(--secondary);
}
.cookie-category {
  font-size: 1.1rem;
  font-weight: bold;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 8px;
}
.cookie-toggle {
  appearance: none;
  width: 36px; height: 20px;
  background: #ffe07d;
  border-radius: 11px;
  position: relative;
  outline: none;
  margin-left: 9px;
  cursor: pointer;
  transition: background 0.16s;
  border: 1.5px solid #f2b134;
}
.cookie-toggle:checked {
  background: var(--secondary);
}
.cookie-toggle:before {
  content: '';
  position: absolute;
  left: 2px; top: 2px;
  width: 16px; height: 16px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 4px #c59e45c0;
  transition: transform 0.17s cubic-bezier(0.23,1.2,0.32,1);
}
.cookie-toggle:checked:before {
  transform: translateX(16px);
}
.cookie-category span[aria-label="Essential"] {
  color: #6b5409;
  font-size: 0.97rem;
  font-weight: 600;
}

/* SPACING AND FLEX UTILITY */
.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;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1200px) {
  .container {
    max-width: 95vw;
  }
  .feature-list li,
  .service-list li, .course-catalog li, .post-grid li, .instructor-bio {
    width: 98vw;
    max-width: 352px;
  }
}
@media (max-width: 990px) {
  .main-nav {
    gap: 10px;
    padding: 12px 6px;
  }
  .feature-list,
  .service-list, .course-catalog, .post-grid, .instructor-list {
    gap: 15px;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .hero h1, .courses-hero h1, .coaching-hero h1, .testimonials-hero h1, .blog-intro h1, .thank-you h1 {
    font-size: 2rem;
  }
  .container {
    padding-left: 8px;
    padding-right: 8px;
  }
  .feature-list, .service-list, .course-catalog, .post-grid, .instructor-list {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .content-wrapper {
    gap: 18px;
  }
  .section {
    padding: 30px 6px;
    margin-bottom: 40px;
  }
  .footer .content-wrapper {
    gap: 10px;
  }
  .footer img {
    margin: 8px 0;
  }
  .footer-social {
    gap: 11px;
  }
  .hero, .courses-hero, .coaching-hero, .testimonials-hero, .blog-intro, .thank-you {
    padding: 44px 0 24px 0;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .testimonial-slider {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .content-grid {
    flex-direction: column;
    gap: 12px;
  }
  .testimonial-card {
    max-width: 99vw;
    font-size: 1rem;
    padding: 14px 10px 13px 10px;
  }
  .about-mission, .team-instructors, .about-differentiators {
    padding-right: 0;
    padding-left: 0;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
    padding: 13px 8px 13px 8px;
  }
}
@media (max-width: 500px) {
  .feature-list li, .service-list li, .course-catalog li, .post-grid li, .instructor-bio {
    width: 98vw;
    max-width: 96vw;
    padding: 20px 5vw;
  }
  .testimonial-card, address {
    padding: 13px 3vw;
    min-width: 0;
  }
  .cookie-modal {
    padding: 18px 7px 18px 9px;
  }
}

/* MICRO-INTERACTIONS */
.btn-primary, .btn-secondary, .footer-social a, .main-nav a, .cookie-banner .btn-consent {
  will-change: transform, box-shadow;
}

/* Hide scroll on mobile menu open */
body.mobile-menu-open {
  overflow: hidden;
}

/* ACCESSIBILITY - FOCUS STATES */
.btn-primary:focus, .btn-secondary:focus, .cookie-banner .btn-consent:focus, .cookie-modal .cookie-close:focus {
  outline: 2px solid var(--primary);
}

/* Misc Fixes */
::-webkit-input-placeholder { color: #aaa; }
:-moz-placeholder { color: #aaa; }
::-moz-placeholder { color: #aaa; }
:-ms-input-placeholder { color: #aaa; }

