/* --- CSS RESET & BASE STYLES --- */
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%;
  vertical-align: baseline;
  box-sizing: border-box;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background: #F7F7F9;
  color: #22273a;
  min-height: 100vh;
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *::before, *::after {
  box-sizing: inherit;
}
a {
  background: transparent;
  color: #2B4570;
  text-decoration: none;
  transition: color 0.18s;
}
a:hover, a:focus {
  color: #F0C808;
}
ul, ol {
  margin-left: 1.3em;
  margin-top: 8px;
}
img {
  max-width: 100%;
  display: block;
}


/* --- BRANDED TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  line-height: 1.15;
}
h1 {
  font-size: 2.4rem;
  color: #2B4570;
  letter-spacing: -1.2px;
  margin-bottom: 16px;
}
h2 {
  font-size: 2rem;
  color: #F0C808;
  margin-bottom: 16px;
  text-shadow: 0 2px 8px rgba(43,69,112,0.08);
}
h3 {
  font-size: 1.3rem;
  color: #2B4570;
  margin-bottom: 8px;
}
h4, h5, h6 {
  color: #2B4570;
  margin-bottom: 4px;
}
p {
  margin-bottom: 12px;
}
strong {
  font-weight: bold;
  color: #2B4570;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* --- HEADER & NAVIGATION --- */
header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 24px;
  background: #fff;
  box-shadow: 0 2px 12px 0 rgba(43,69,112,0.08);
  position: relative;
  z-index: 20;
}
.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 28px;
  align-items: center;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
}
.main-nav a {
  color: #2B4570;
  font-size: 1rem;
  letter-spacing: 0.5px;
  padding: 6px 8px;
  border-radius: 6px;
  transition: color .15s, background .15s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #F0C808;
  color: #22273a;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: #fff;
  background: #2B4570;
  border: none;
  border-radius: 999px;
  padding: 12px 30px;
  box-shadow: 0 4px 24px 0 rgba(43,69,112,0.20);
  cursor: pointer;
  transition: background .19s, color .18s, box-shadow .2s, transform .19s;
  text-align: center;
  letter-spacing: 1px;
  margin-left: 30px;
}
.btn-primary:hover, .btn-primary:focus {
  background: #F0C808;
  color: #2B4570;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 32px 0 rgba(240,200,8,0.16);
}
.btn-secondary {
  display: inline-flex;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  background: #F0C808;
  color: #2B4570;
  border-radius: 999px;
  border: none;
  padding: 10px 26px;
  margin: 8px 0 0 0;
  box-shadow: 0 3px 10px rgba(240,200,8,0.07);
  cursor: pointer;
  transition: background .14s, color .14s, box-shadow .15s;
}
.btn-secondary:hover, .btn-secondary:focus {
  color: #fff;
  background: #2B4570;
}

/* --- MOBILE NAV --- */
.mobile-menu-toggle {
  background: none;
  color: #2B4570;
  font-size: 2.1rem;
  border: none;
  cursor: pointer;
  margin-left: 18px;
  z-index: 202;
  display: none;
  transition: color .15s, transform .13s;
}
.mobile-menu-toggle:active {
  color: #F0C808;
  transform: scale(0.92);
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: #fff;
  z-index: 200;
  transform: translateX(-100%);
  transition: transform .33s cubic-bezier(.8,.05,.3,1.2);
  box-shadow: 0 0 40px rgba(43,69,112,0.16);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: all;
  opacity: 1;
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 2rem;
  color: #2B4570;
  padding: 24px;
  cursor: pointer;
  transition: color .15s, transform .15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #F0C808;
  transform: scale(1.10);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
  align-items: flex-start;
  padding-left: 36px;
}
.mobile-nav a {
  color: #2B4570;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 10px 12px;
  border-radius: 6px;
  transition: background .15s, color .14s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F0C808;
  color: #22273a;
}
@media (max-width:1024px) {
  .main-nav {
    gap: 16px;
  }
  .btn-primary {
    margin-left: 10px;
    padding: 10px 24px;
    font-size: 1rem;
  }
}
@media (max-width:850px) {
  header {
    gap: 8px;
    padding: 13px 8px;
  }
  .main-nav {
    display: none;
  }
  .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}

/* --- HERO SECTION --- */
.hero {
  background: #2B4570;
  color: #fff;
  padding: 60px 0 56px 0;
  min-height: 270px;
  position: relative;
  display: flex;
  align-items: center;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero .content-wrapper {
  gap: 20px;
  max-width: 730px;
}
.hero h1 {
  color: #fff;
  font-size: 2.6rem;
  /* Shadow for vibrancy */
  text-shadow: 0 3px 20px rgba(43,69,112,0.25), 0 1px 0 #22273a22;
}
.hero p {
  color: #F0C808;
  font-size: 1.25rem;
  font-weight: 500;
}
.hero .btn-primary {
  margin-top: 16px;
  font-size: 1.10rem;
  background: #F0C808;
  color: #2B4570;
}
.hero .btn-primary:hover, .hero .btn-primary:focus {
  background: #fff;
  color: #2B4570;
}

/* --- FEATURES & SERVICES --- */
.features {
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 8px 32px 0 rgba(43,69,112,0.06);
  margin-bottom: 60px;
  padding: 60px 0;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  list-style: none;
  margin-top: 28px;
  margin-bottom: 0;
  padding: 0;
  justify-content: space-between;
}
.feature-grid li {
  background: #F7F7F9;
  border-radius: 24px;
  flex: 1 1 210px;
  max-width: 280px;
  min-width: 210px;
  padding: 26px 22px;
  box-shadow: 0 2px 18px 0 rgba(43,69,112,.08);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  transition: box-shadow .18s, transform .18s, background .16s;
}
.feature-grid li:hover, .feature-grid li:focus-within {
  box-shadow: 0 10px 32px 0 rgba(240,200,8,0.13);
  background: #fffdee;
  transform: translateY(-2px) scale(1.025);
}
.feature-grid img {
  width: 48px; height: 48px;
  margin-bottom: 8px;
}
.feature-grid h3 {
  color: #2B4570;
  margin-bottom: 4px;
  font-size: 1.13rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  list-style: none;
  margin-top: 24px;
  margin-bottom: 0;
  padding: 0;
  justify-content: space-between;
}
.service-list li {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 2px 14px 0 rgba(43,69,112,0.08);
  flex: 1 1 240px;
  max-width: 330px;
  min-width: 210px;
  padding: 28px 24px 16px 24px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  transition: box-shadow .16s, transform .16s, background .16s;
  position: relative;
}
.service-list li:hover, .service-list li:focus-within {
  box-shadow: 0 10px 35px 0 rgba(43,69,112,0.13);
  background: #F7F7F9;
  transform: scale(1.025);
}
.service-list img {
  width: 40px; height: 40px;
  margin-bottom: 6px;
}
.service-list h3 {
  color: #F0C808;
  margin-bottom: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}
.service-list .price {
  font-weight: 700;
  font-size: 1.04rem;
  color: #2B4570;
  background: #fffdee;
  padding: 5px 18px;
  border-radius: 999px;
  margin-top: 5px;
  margin-bottom: 0;
  box-shadow: 0 1px 6px rgba(240,200,8,0.11);
}

/* --- TESTIMONIALS --- */
.testimonials {
  background: #fffdee;
  padding: 54px 0 64px 0;
  border-radius: 40px;
  margin-bottom: 60px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 28px;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 2px 14px 0 rgba(43,69,112,0.10);
  margin-bottom: 24px;
  max-width: 580px;
  border-left: 6px solid #F0C808;
  transition: box-shadow .13s, transform .13s, border-color .15s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 8px 32px 0 rgba(43,69,112,.12);
  border-left: 6px solid #2B4570;
  transform: translateY(-2px) scale(1.015);
}
.testimonial-card p {
  font-size: 1.12rem;
  color: #22273a;
  margin-bottom: 0;
}
.testimonial-meta {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  font-size: 0.98rem;
  color: #2B4570;
}
.testimonial-meta strong {
  color: #2B4570;
}
.testimonial-meta span {
  color: #F0C808;
  font-size: 1.04rem;
  font-weight: 900;
  margin-left: 12px;
}

/* --- CARDS / LISTS --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 36px;
}
.card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 14px 0 rgba(43,69,112,0.09);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 26px 20px;
  gap: 14px;
  min-width: 220px;
  max-width: 340px;
  transition: box-shadow .18s, transform .16s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 34px 0 rgba(43,69,112,0.13);
  transform: translateY(-2px) scale(1.02);
}
.card h3 {
  color: #2B4570;
  font-size: 1.11rem;
}
.card p {
  color: #22273a;
}
.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;
}

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

.expert-advice-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 16px;
}
.expert-advice-box {
  background: #2B4570;
  color: #fff;
  border-radius: 14px;
  padding: 22px 22px 14px 22px;
  box-shadow: 0 2px 12px 0 rgba(43,69,112,0.13);
  font-size: 1.04rem;
  margin-bottom: 12px;
}

/* FAQ Accordion */
.faq-accordion {
  margin: 0;
  padding: 0;
}
.faq-accordion dt {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #2B4570;
  margin: 16px 0 4px 0;
  cursor: pointer;
  position: relative;
}
.faq-accordion dd {
  margin-left: 16px;
  margin-bottom: 10px;
  color: #22273a;
}

/* --- CTA Section --- */
.cta {
  background: #2B4570;
  color: #fff;
  border-radius: 24px;
  margin-bottom: 60px;
  padding: 44px 0 38px 0;
  box-shadow: 0 4px 24px 0 rgba(43,69,112,0.18);
}
.cta h2 {
  color: #F0C808;
  margin-bottom: 8px;
}
.cta p {
  color: #fff;
  font-size: 1.1rem;
}
.cta .btn-primary {
  background: #F0C808;
  color: #2B4570;
  margin-top: 16px;
}
.cta .btn-primary:hover, .cta .btn-primary:focus {
  background: #fff;
  color: #2B4570;
}

.confirmation {
  padding: 60px 0 56px 0;
  background: #F0C808;
  color: #2B4570;
  text-align: center;
}
.confirmation h1 {
  color: #2B4570;
  margin-bottom: 18px;
}
.confirmation .btn-primary {
  margin: 26px auto 0 auto;
  background: #2B4570;
  color: #fff;
}
.confirmation .btn-primary:hover, .confirmation .btn-primary:focus {
  background: #fff;
  color: #2B4570;
}

/* --- CONTACT SECTION --- */
.contact {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 2px 16px rgba(43,69,112,0.05);
  margin-bottom: 60px;
  padding: 38px 0 44px 0;
}
.contact ul {
  list-style: none;
  padding: 0;
}
.contact li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: #2B4570;
  font-family: 'Lato', Arial, Helvetica, sans-serif;
}
.contact li a {
  color: #2B4570;
  text-decoration: underline dotted;
}
.contact li img, .address-map img {
  width: 100px;
}
.address-map {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 10px;
  background: #fffdee;
  padding: 16px 24px;
  border-radius: 15px;
  box-shadow: 0 1px 8px rgba(240,200,8,0.08);
}

/* --- EVENTS & WORKSHOPS --- */
.events, .recap {
  background: #fff;
  border-radius: 24px;
  margin-bottom: 60px;
  padding: 40px 0 40px 0;
  box-shadow: 0 2px 10px 0 rgba(43,69,112,0.05);
}
.event-calendar {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
  margin: 24px 0 0 0;
  padding: 0;
  justify-content: flex-start;
}
.event-calendar li {
  background: #F7F7F9;
  border-radius: 18px;
  padding: 24px 20px;
  box-shadow: 0 1px 8px rgba(43,69,112,0.07);
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 220px;
  max-width: 330px;
}
.event-calendar h3 {
  color: #2B4570;
}
.workshop-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 18px 0 0 0;
  padding: 0;
  list-style: none;
}
.workshop-highlights li {
  background: #F0C808;
  color: #2B4570;
  padding: 14px 20px;
  border-radius: 11px;
  font-weight: 700;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.learning-outcomes {
  background: #fff;
  margin-top: 22px;
  border-radius: 12px;
  padding: 18px 20px;
  color: #2B4570;
  box-shadow: 0 1px 8px rgba(43,69,112,0.08);
}

/* --- ONLINE COURSES --- */
.explainer {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 2px 10px 0 rgba(43,69,112,0.09);
  margin-bottom: 60px;
  padding: 40px 0 48px 0;
}
.step-by-step-guide {
  list-style: decimal inside;
  padding-left: 0;
  margin: 14px 0 22px 0;
  gap: 14px;
}
.benefits-list {
  list-style: disc inside;
  margin: 14px 0 24px 0;
  color: #2B4570;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.featured-courses {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 16px 0 30px 0;
}
.featured-courses > div {
  background: #2B4570;
  color: #fff;
  border-radius: 15px;
  padding: 20px 22px 14px 22px;
  min-width: 190px;
  max-width: 280px;
  flex: 1 1 150px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  box-shadow: 0 2px 14px 0 rgba(43,69,112,0.10);
}
.course-platform-overview {
  background: #fffdee;
  color: #2B4570;
  border-radius: 12px;
  padding: 14px 20px;
  margin-top: 8px;
  font-size: 1.04rem;
  box-shadow: 0 1px 8px rgba(43,69,112,0.08);
}

/* --- FOOTER ---*/
footer {
  background: #2B4570;
  color: #fff;
  padding: 40px 12px 24px 12px;
  border-top-left-radius: 26px;
  border-top-right-radius: 26px;
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 10px;
}
.footer-nav nav {
  display: flex;
  flex-direction: row;
  gap: 20px;
}
.footer-nav a {
  color: #F0C808;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  transition: color .17s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #fff;
  text-shadow: 0 0 6px #F0C80844;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}
.footer-brand img {
  width: 38px; height: 38px;
}
.footer-brand span {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: .02em;
  color: #fff;
  font-size: 1rem;
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  width: 100vw;
  background: #2B4570;
  color: #fff;
  box-shadow: 0 -3px 24px 0 rgba(43,69,112,0.13);
  padding: 26px 20px;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  animation: cookieFadeIn .5s cubic-bezier(.17,.67,.94,1.0);
}
@keyframes cookieFadeIn {
  from { opacity: 0; transform: translateY(60px); }
  to { opacity: 1; transform: none; }
}
.cookie-banner.show {
  display: flex;
}
.cookie-banner.hide {
  display: none;
}
.cookie-banner .cookie-text {
  text-align: center;
  font-size: 1.06rem;
  color: #fff;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
}
.cookie-btn {
  padding: 8px 20px;
  border-radius: 999px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  box-shadow: 0 2px 6px rgba(43,69,112,0.11);
  margin: 0 2px;
  cursor: pointer;
  transition: background .15s, color .14s;
}
.cookie-btn.accept {
  background: #F0C808;
  color: #2B4570;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #fff;
}
.cookie-btn.reject {
  background: #fff;
  color: #2B4570;
  border: 1.5px solid #F0C808;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #F0C808;
  color: #fff;
}
.cookie-btn.settings {
  background: #2B4570;
  color: #fff;
  border: 1.5px solid #F0C808;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #F0C808;
  color: #2B4570;
}

/* COOKIE SETTINGS MODAL */
.cookie-modal-overlay {
  position: fixed;
  top:0; left:0; right:0; bottom:0;
  width: 100vw; height: 100vh;
  background: rgba(35,30,70,0.38);
  z-index: 3600;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity .18s;
}
.cookie-modal-overlay.open {
  pointer-events: all;
  opacity: 1;
}
.cookie-modal {
  background: #fff;
  color: #22273a;
  border-radius: 18px;
  box-shadow: 0 6px 30px 0 rgba(43,69,112,0.21);
  padding: 32px 30px 24px 30px;
  max-width: 390px;
  min-width: 260px;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: modalPopIn .23s cubic-bezier(.19,1,.22,.99);
}
@keyframes modalPopIn {
  from {opacity: 0; transform: translateY(70px) scale(.9);}
  to {opacity: 1; transform: none;}
}
.cookie-modal h3 {
  color: #2B4570;
  margin-bottom: 2px;
}
.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 10px;
}
.cookie-option {
  background: #F7F7F9;
  padding: 13px 18px;
  border-radius: 12px;
  box-shadow: 0 2px 7px rgba(43,69,112,0.03);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.04rem;
  margin-bottom: 6px;
}
.cookie-option.essential {
  color: #2B4570;
  font-weight: 700;
}
.cookie-option input[type=checkbox] {
  width: 18px;
  height: 18px;
  accent-color: #F0C808;
  cursor: pointer;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.cookie-modal .cookie-btn {
  min-width: 120px;
}
/* Modal close button (inside modal) */
.cookie-modal-close {
  align-self: flex-end;
  color: #2B4570;
  font-size: 1.6rem;
  background: none;
  border: none;
  margin-bottom: -14px;
  margin-right: -8px;
  cursor: pointer;
  transition: color .14s, transform .13s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #F0C808;
  transform: scale(1.12);
}


/* --- RESPONSIVE LAYOUTS --- */
@media (max-width:1050px) {
  .feature-grid li, .service-list li,
  .event-calendar li, .featured-courses > div {
    min-width: 180px;
    max-width: 95vw;
  }
  .featured-courses, .feature-grid, .service-list, .event-calendar {
    gap: 14px;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 98vw;
  }
  .content-wrapper {
    gap: 15px;
  }
  .feature-grid li, .service-list li {
    padding: 18px 14px;
  }
}
@media (max-width: 768px) {
  .feature-grid, .service-list, .event-calendar, .workshop-highlights, .featured-courses {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
  .hero {
    padding: 38px 0 31px 0;
    min-height: 180px;
  }
  .section, .features, .services, .recap, .explainer, .cta, .testimonials, .contact {
    padding: 26px 0 26px 0;
    margin-bottom: 33px;
    border-radius: 10px;
  }
  .footer-brand img {
    width: 30px; height: 30px;
  }
  .footer-brand span {
    font-size: 0.92rem;
  }
  .mobile-menu {
    padding-top: 15px;
  }
  .mobile-nav {
    padding-left: 16px;
    gap: 15px;
    margin-top: 22px;
  }
  .mobile-nav a {
    font-size: 1.1rem;
    padding: 7px 8px;
  }
}
@media (max-width: 625px) {
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.2rem; }
  .section, .feature-grid li, .service-list li, .contact, .events, .recap, .explainer, .featured-courses > div {
    padding: 16px 4vw;
  }
  .hero {
    padding: 22px 0 12px 0;
    min-height: 110px;
  }
}
@media (max-width: 560px) {
  .container {
    padding-left: 0;
    padding-right: 0;
  }
  .card, .testimonial-card, .feature-grid li, .service-list li, .event-calendar li, .featured-courses > div {
    padding: 9vw 4vw;
  }
}

/* --- MICRO-INTERACTIONS & HOVER EFFECTS --- */
.card:hover, .feature-grid li:hover, .testimonial-card:hover, .service-list li:hover {
  transition: transform .2s cubic-bezier(.17,.67,.94,1.0), box-shadow .22s;
}
button, .btn-primary, .btn-secondary, .cookie-btn {
  transition: background .14s, color .13s, box-shadow .13s, transform .14s;
}
.btn-primary:active, .btn-secondary:active, .cookie-btn:active {
  transform: scale(0.99);
}

/* Focus Ring for accessibility */
:focus-visible {
  outline: 2.5px solid #F0C808;
  outline-offset: 2px;
}

/* --- PRINT BASE (for privacy/policy pages) --- */
@media print {
  header, .mobile-menu, .cookie-banner, footer {
    display: none !important;
  }
  .container {
    padding: 0;
    max-width: 100%;
  }
}
