/* 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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  font-family: 'Roboto', Arial, sans-serif;
  background-color: #F8F7F4;
  color: #2F3730;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

/* BRAND COLORS AND NATURE ORGANIC EXTENSIONS */
:root {
  --brand-primary: #213B63;
  --brand-secondary: #59A4D6;
  --brand-accent: #F2C063;
  --earth-green: #37824A;
  --earth-forest: #34513A;
  --earth-brown: #9c7c59;
  --earth-sand: #f4ebdf;
  --earth-clay: #eadac7;
  --earth-dark: #232e27;
  --nature-bg: #F4F8F5;
  --nature-shadow: rgba(51, 75, 64, 0.08);
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  color: var(--earth-forest);
  line-height: 1.15;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.25rem; margin-bottom: 20px; }
h2 { font-size: 1.5rem; margin-bottom: 16px; }
h3 { font-size: 1.2rem; margin-bottom: 12px; }
h4 { font-size: 1rem; margin-bottom: 8px; }

p, li, ul, ol, span, strong, small {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #33402c;
}
strong { font-weight: 700; color: var(--earth-green); }
small { font-size: 0.95em; color: #557348; }

/* LINK STYLES */
a {
  color: var(--earth-green);
  text-decoration: underline;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: var(--brand-secondary);
  text-decoration: none;
}

/* LAYOUT CONTAINERS */
.container {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background-color: var(--nature-bg);
  border-radius: 32px;
  box-shadow: 0 2px 24px var(--nature-shadow);
}

@media (max-width: 900px) {
  .section {
    padding: 28px 8px;
    margin-bottom: 38px;
  }
}

/* HEADER & NAVBAR */
header {
  background: #F4F8F5;
  border-bottom: 1.5px solid var(--earth-clay);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
  gap: 28px;
}
header img {
  height: 46px;
  width: auto;
}
header nav {
  display: flex;
  flex-direction: row;
  gap: 22px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  padding: 8px 0;
  color: var(--earth-forest);
  position: relative;
  border-radius: 12px;
  transition: background 0.18s, color 0.18s;
}
header nav a:hover, header nav a:focus {
  background: var(--earth-sand);
  color: var(--earth-green);
}

.cta-btn {
  background: linear-gradient(90deg, var(--earth-green) 80%, var(--brand-accent) 120%);
  color: #fff;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  border-radius: 28px;
  padding: 12px 32px;
  box-shadow: 0 3px 18px var(--nature-shadow);
  cursor: pointer;
  text-decoration: none;
  margin-left: 6px;
  letter-spacing: 0.03em;
  transition: background 0.2s, box-shadow 0.2s, color 0.2s;
  outline: none;
  position: relative;
  z-index: 1;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--brand-accent);
  color: var(--earth-dark);
  box-shadow: 0 6px 24px rgba(90,125,60,0.20);
  text-decoration: none;
}

/* MOBILE NAVIGATION */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 22px;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: var(--brand-primary);
  color: #fff;
  font-size: 2rem;
  z-index: 1501;
  box-shadow: 0 4px 18px var(--nature-shadow);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--earth-green);
  color: var(--brand-accent);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(36, 57, 30, 0.97);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(.68,-0.55,.27,1.55);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.active {
  transform: translateX(0);
  pointer-events: all;
  opacity: 1;
}
.mobile-menu-close {
  background: transparent;
  color: #fff;
  font-size: 2.2rem;
  border: none;
  margin: 28px 24px 16px 0;
  cursor: pointer;
  transition: color 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--brand-accent);
}
.mobile-nav {
  width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
.mobile-nav a {
  display: block;
  width: 100%;
  font-size: 1.24rem;
  padding: 22px 40px;
  color: #f4f4ea;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,0.10);
  background: none;
  transition: background 0.18s, color 0.18s;
  text-decoration: none;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: var(--brand-accent);
  color: var(--earth-dark);
}

@media (max-width: 1020px) {
  header .container nav, .cta-btn {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 1021px) {
  .mobile-menu-toggle, .mobile-menu { display: none !important; }
}

/* HERO SECTIONS */
.hero {
  background: linear-gradient(110deg, #e2f3e5 0 85%, #f6e6be 100%);
  border-radius: 0 0 56px 56px / 0 0 12% 12%;
  margin-bottom: 56px;
  box-shadow: 0 8px 38px var(--nature-shadow);
}
.hero .container {
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  max-width: 740px;
  padding: 50px 0 18px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}
.hero h1 {
  color: var(--earth-green);
  font-size: 2.5rem;
  margin-bottom: 10px;
}
.hero p {
  font-size: 1.25rem;
  color: var(--earth-dark);
  margin-bottom: 8px;
}

/* FEATURES, ABOUT, CARDS, GRID LAYOUTS */
.features .content-wrapper, .about .content-wrapper, .services .content-wrapper, .team .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.features ul, .about ul, .services ul {
  list-style: none;
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px 34px;
}
.features li, .about li, .services li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1em;
  padding: 12px 22px 12px 0;
  background: none;
  border-radius: 16px;
}
.features img, .about img, .services img {
  width: 36px;
  height: 36px;
  border-radius: 14px;
  background: #e8f5e9;
  margin-right: 12px;
  box-shadow: 0 1px 4px rgba(51,75,64,0.09);
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
}
.card {
  background: var(--earth-sand);
  border-radius: 18px;
  box-shadow: 0 4px 16px rgba(51,75,64,0.10);
  padding: 28px 24px;
  margin-bottom: 20px;
  flex: 1 1 312px;
  transition: box-shadow 0.2s, transform 0.2s;
  position: relative;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 28px rgba(55,130,74,0.14);
  transform: translateY(-4px) scale(1.02);
}
.card-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
}

.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;
}

/* COURSE CARDS, INSTRUCTOR CARDS, SPECIAL SECTIONS */
.course-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
  justify-content: flex-start;
}
.course-card {
  background: var(--earth-clay);
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(55,130,74,0.08);
  padding: 24px 20px;
  flex: 1 1 260px;
  min-width: 220px;
  margin-bottom: 20px;
  transition: box-shadow 0.2s, background 0.2s;
}
.course-card:hover, .course-card:focus-within {
  background: #f7f3e0;
  box-shadow: 0 8px 32px var(--nature-shadow);
}

.instructor-profiles {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: stretch;
}
.instructor-profile {
  background: var(--nature-bg);
  border-radius: 20px 60% 28px 18px / 32px 36px 100px 18px;
  box-shadow: 0 2px 15px rgba(51,75,64,0.10);
  padding: 24px 20px 22px 28px;
  flex: 1 1 270px;
  margin-bottom: 20px;
  transition: box-shadow 0.2s, transform 0.2s;
  border-left: 5px solid var(--earth-green);
}
.instructor-profile:hover, .instructor-profile:focus {
  box-shadow: 0 8px 28px var(--nature-shadow);
  transform: translateY(-2px);
}

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

/* TESTIMONIALS */
.testimonials .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border: 1.5px solid var(--earth-clay);
  border-radius: 18px 42px 22px 36px/22px 44px 46px 18px;
  box-shadow: 0 6px 32px rgba(55,130,74,0.08);
  flex: 1 1 245px;
  margin-bottom: 20px;
  min-width: 220px;
  max-width: 350px;
  transition: box-shadow 0.15s, background 0.2s;
}
.testimonial-card p {
  font-size: 1.06rem;
  color: var(--earth-dark);
  font-style: italic;
}
.testimonial-card span {
  align-self: flex-end;
  font-size: 0.96rem;
  color: var(--earth-green);
  font-weight: 600;
}
.stars {
  color: var(--brand-accent);
  font-size: 1.2rem;
  letter-spacing: 2px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
}
.testimonial-card:hover {
  background: var(--earth-clay);
  box-shadow: 0 8px 28px var(--nature-shadow);
}
.testimonial-highlight {
  background: var(--brand-secondary);
  color: #fff;
  border-radius: 38px 18px 48px 32px/32px 44px 34px 28px;
  box-shadow: 0 8px 40px rgba(33,59,99,0.18);
  padding: 32px 28px;
  margin-bottom: 20px;
  flex: 2 1 420px;
  font-size: 1.08rem;
}
.testimonial-highlight h3 {
  color: var(--earth-sand);
}
.testimonial-highlight strong {
  color: #FFF2CA;
  font-size: 1.04em;
}

/* CTAS */
.cta {
  background: linear-gradient(99deg, #e2f3e5 65%, #f2e7bc 100%);
  border-radius: 36px 50px 16px 56px/18px 64px 100px 36px;
  box-shadow: 0 5px 38px var(--nature-shadow);
  margin-bottom: 60px;
}
.cta .container .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0 10px 0;
}
.cta ul {
  margin-left: 0;
  margin-bottom: 8px;
  list-style: disc inside;
  color: var(--earth-green);
}

/* SCHEDULE & FILTER */
.schedule-filter {
  display: flex;
  gap: 22px;
  margin-bottom: 18px;
}
.schedule-filter a {
  font-weight: 600;
  color: var(--earth-green);
  border-radius: 12px;
  padding: 6px 16px;
  background: #e7efe7;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.schedule-filter a:hover, .schedule-filter a:focus {
  background: var(--brand-accent);
  color: var(--earth-dark);
}
.schedule-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 18px 30px;
}
.schedule-list li {
  padding: 14px 18px;
  background: var(--earth-clay);
  border-radius: 15px;
  font-size: 1rem;
  color: var(--earth-dark);
  box-shadow: 0 1px 6px rgba(121, 135, 72,0.11);
  min-width: 240px;
  line-height: 1.45;
}

/* ABOUT - HISTORY TIMELINE */
.history-timeline {
  margin-top: 20px;
  padding: 20px 0 0 18px;
  border-left: 3px solid var(--earth-brown);
  border-radius: 14px;
}
.history-timeline ul {
  margin-top: 6px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.history-timeline li {
  position: relative;
  padding-left: 16px;
  color: var(--earth-dark);
}
.history-timeline li:before {
  content: '';
  display: inline-block;
  position: absolute;
  left: -10px;
  top: 6px;
  width: 8px;
  height: 8px;
  background: var(--brand-accent);
  border-radius: 50%;
}

/* CONTACT DETAILS */
.contact-details ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 10px;
}
.contact-details li {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.08em;
}
.contact-details img {
  width: 24px; height: 24px;
}
.direct-contact ul {
  list-style: none;
  margin-top: 4px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.map-embed img {
  width: 220px; max-width: 90vw;
  height: auto;
  margin-top: 18px;
  border-radius: 18px;
  box-shadow: 0 1px 8px #c3bbad33;
}

/* LEGAL PAGE STYLES */
.legal h1 {
  font-size: 2.1rem;
  margin-bottom: 20px;
  color: var(--earth-dark);
}
.legal h2 { color: var(--earth-green); margin-top: 22px; }
.legal ul {
  list-style: disc inside;
  margin: 10px 0 16px 0;
}
.legal li {
  margin-bottom: 6px;
  color: var(--earth-dark);
}
.legal a {
  text-decoration: underline;
  color: var(--brand-secondary);
}

/* FOOTER */
footer {
  background: #F4F8F5;
  border-top: 1.5px solid var(--earth-clay);
  padding: 36px 0 12px 0;
  margin-top: 40px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 40px;
  justify-content: space-between;
}
footer img {
  width: 60px;
  height: auto;
  margin-bottom: 10px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
footer nav a {
  color: var(--earth-forest);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.01rem;
  font-weight: 400;
  text-decoration: underline;
  border-radius: 12px;
  padding: 3px 8px;
  transition: background 0.2s, color 0.2s;
}
footer nav a:hover, footer nav a:focus {
  background: var(--brand-accent);
  color: var(--earth-dark);
}
.footer-contact {
  font-size: 0.99rem;
  color: var(--earth-green);
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}
.footer-contact img { width: 19px; margin-right: 8px; vertical-align: middle; }

@media (max-width: 800px) {
  footer .container {
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
  }
  footer nav { flex-wrap: wrap; gap: 10px; }
  .footer-contact { margin-bottom: 10px; }
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  width: 100vw;
  background: #fffef8;
  border-top: 2.5px solid var(--brand-accent);
  box-shadow: 0 -5px 24px rgba(95, 80, 35, 0.10);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 24px 16px 18px 16px;
  z-index: 3000;
  font-size: 1rem;
  max-width: 100vw;
  animation: cookieDrop 0.36s cubic-bezier(.4,2,.41,.98);
}
@keyframes cookieDrop {
  0% { transform: translateY(90px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner p { color: var(--earth-dark); font-size: 1rem; margin-bottom: 5px; }
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-banner button {
  border-radius: 22px;
  border: none;
  padding: 8px 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  background: var(--brand-accent);
  color: var(--earth-dark);
  margin: 0;
  box-shadow: 0 2px 7px #edddb3c0;
  transition: background 0.18s, color 0.18s;
  cursor: pointer;
}
.cookie-banner .accept {
  background: var(--earth-green);
  color: #fff;
}
.cookie-banner .reject {
  background: #ddd5c2;
  color: var(--earth-dark);
}
.cookie-banner .settings {
  background: var(--brand-accent);
  color: var(--earth-dark);
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: var(--brand-secondary);
  color: #fff;
}

/* COOKIE MODAL POPUP */
.cookie-modal {
  display: none;
  position: fixed;
  z-index: 3500;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(34, 54, 30, 0.68);
  align-items: center;
  justify-content: center;
  animation: cookieModalFade 0.3s cubic-bezier(.39,.7,.5,.97);
}
@keyframes cookieModalFade {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal.active {
  display: flex;
}
.cookie-modal .modal-content {
  background: #fff;
  border-radius: 22px;
  max-width: 430px;
  width: 94vw;
  padding: 34px 24px 30px 26px;
  box-shadow: 0 8px 48px #39544d24;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: stretch;
  animation: cookiePopupBounce 0.29s cubic-bezier(.49,2.05,.35,1.11);
}
@keyframes cookiePopupBounce {
  0% { transform: scale(0.92); opacity: 0; }
  95% { transform: scale(1.01); }
  100% { transform: scale(1); opacity:1; }
}
.cookie-modal h3 {
  color: var(--earth-green);
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--earth-sand);
  border-radius: 13px;
  padding: 10px 16px;
  margin-bottom: 6px;
}
.cookie-modal .cookie-category label {
  font-size: 1.08rem;
}
.cookie-modal .cookie-category input[type=checkbox] {
  width: 22px; height: 22px;
  accent-color: var(--earth-green);
}
.cookie-modal .cookie-category.essential {
  background: #f7f3e4;
  opacity: 0.77;
  cursor: not-allowed;
}
.cookie-modal .close-modal {
  align-self: flex-end;
  background: transparent;
  border: none;
  color: var(--earth-dark);
  font-size: 1.7rem;
  padding: 0 0 8px 0;
  cursor: pointer;
}
.cookie-modal .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  justify-content: flex-end;
}

/* TRANSITIONS & INTERACTIONS */
.card, .testimonial-card, .instructor-profile, .course-card {
  transition: box-shadow 0.21s, transform 0.19s, background 0.2s;
}
.cta-btn, .cookie-banner button, .mobile-menu-toggle, .mobile-nav a, .course-tabs a, .schedule-filter a {
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1020px) {
  .content-grid, .card-container, .testimonials .content-wrapper, .instructor-profiles, .course-cards, .schedule-list {
    flex-direction: column;
    gap: 18px;
  }
  .hero .container, .hero .content-wrapper {
    padding: 30px 0 8px 0;
  }
}
@media (max-width: 768px) {
  .container { padding: 0 11px; }
  .hero .container {
    min-height: 200px;
  }
  .hero h1 { font-size: 1.6rem; }
  .hero p { font-size: 1rem; }
  h1 { font-size: 1.4rem; }
  h2 { font-size: 1.1rem; }
  h3 { font-size: 1.01rem; }
  .section {
    padding: 22px 4px;
    margin-bottom: 27px;
  }
  .features ul, .about ul, .services ul, .history-timeline ul { gap: 12px; }
  .cta {
    margin-bottom: 32px;
    padding: 18px 0;
    border-radius: 18px 26px 8px 18px/9px 32px 60px 18px;
  }
  .testimonial-card, .card, .instructor-profile, .course-card { max-width: 96vw; }
  .text-image-section { flex-direction: column; gap: 18px; }
  .testimonial-highlight { padding: 18px 10px; border-radius: 28px 12px 28px 18px/14px 32px 26px 12px; }
  .history-timeline { padding-left: 7px; }
  .map-embed img { width: 98vw; }
}
@media (max-width: 490px) {
  header .container img { height: 32px; }
  .footer-contact { font-size: 0.86rem; }
  .hero h1 { font-size: 1.05rem; }
}

/* UI MICRO-ANIMATIONS */
.cta-btn:active, .mobile-menu-toggle:active {
  transform: scale(0.95);
}
.card:active, .testimonial-card:active, .instructor-profile:active, .course-card:active {
  transform: scale(0.98);
}

/* VISUAL ORGANIC ELEMENTS (OPTIONAL DECORATIVE SHAPES)*/
/* Organic shapes for background decorations, if used, should have position: absolute with z-index: 0 and pointer-events: none; avoiding content overlap. */

/* MISC */
ul, ol {
  margin-bottom: 14px;
}
li {margin-left: 1.5em;}
img {max-width: 100%;height: auto;display: inline-block;}

/* ACCESSIBILITY FOCUS STATES */
a:focus, .cta-btn:focus, .mobile-menu-toggle:focus, button:focus, input:focus, .cookie-banner button:focus {
  outline: 2px dashed var(--earth-green);
  outline-offset: 4px;
  background: #eafbe9 !important;
}

/* Hide scroll for mobile nav when not active */
.mobile-menu { overflow-y: auto; -webkit-overflow-scrolling: touch; }

/* COURSE TABS */
.course-tabs {
  display: flex;
  flex-direction: row;
  gap: 18px;
  margin-bottom: 20px;
}
.course-tabs a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: var(--earth-green);
  background: #d6eedd;
  border-radius: 14px;
  padding: 8px 18px;
  text-decoration: none;
  transition: background 0.17s, color 0.17s;
}
.course-tabs a:hover, .course-tabs a:focus {
  background: var(--brand-accent);
  color: var(--earth-dark);
}

/* THANK YOU PAGE */
.hero .content-wrapper p a.cta-btn {
  margin-left: 0;
  margin-top: 14px;
}

/* Print adjustments */
@media print {
  .mobile-menu, .mobile-menu-toggle, .cookie-banner, .cookie-modal { display: none !important; }
}

