/* =====================
   CSS RESET & BASELINE
====================== */
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, main, 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;
}
html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}
body {
  min-height: 100vh;
  background: #fff;
  color: #222;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, picture, video, canvas, svg {
  display: inline-block;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
button, input, optgroup, select, textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: 1.3;
  color: inherit;
  border: none;
  background: none;
  outline: none;
  appearance: none;
}
a {
  color: #222;
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 500;
}
a:hover, a:focus {
  color: #23447A;
}
ul, ol {
  list-style: none;
}

/* =======================================
   TYPOGRAPHY -- ELEGANT HIERARCHY
======================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #111;
  font-weight: 700;
  letter-spacing: 0.01em;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.75rem;
  line-height: 1.1;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  line-height: 1.15;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  line-height: 1.2;
}
h4, h5, h6 {
  font-size: 1.05rem;
}
p, .subheadline {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  margin-bottom: 1.2em;
  color: #333;
}
.subheadline {
  font-size: 1.15rem;
  color: #444;
  margin-bottom: 24px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.01em;
}
strong {
  font-weight: 700;
  color: #181818;
}
.caption {
  font-size: 0.95rem;
  color: #717171;
  font-family: 'Roboto', Arial, sans-serif;
}

/* =======================
   LAYOUT UTILS & CONTAINER
========================*/
.container {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

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

/* ===============================
HEADER & NAVIGATION - DESKTOP
=============================== */
header {
  background: #fff;
  border-bottom: 1px solid #efefef;
  position: sticky;
  top: 0;
  z-index: 20;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 20px 20px 20px;
}
.main-nav > a img {
  height: 38px;
  width: auto;
  margin-right: 22px;
  vertical-align: middle;
}
.main-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-left: 18px;
  align-items: center;
}
.main-nav ul li a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #222;
  font-size: 1rem;
  padding: 6px 8px;
  border-radius: 4px;
  transition: color 0.18s, background 0.18s;
}
.main-nav ul li a:hover,
.main-nav ul li a:focus {
  background: #EAEAEA;
  color: #23447A;
}
.main-nav .cta {
  margin-left: 28px;
  background: #111;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: 32px;
  padding: 11px 32px;
  box-shadow: 0 2px 12px rgba(34, 34, 34, 0.05);
  transition: background 0.18s, color 0.18s, transform 0.18s;
  border: none;
  cursor: pointer;
  display: inline-block;
}
.main-nav .cta:hover, .main-nav .cta:focus {
  background: #23447A;
  color: #fff;
  transform: translateY(-2px) scale(1.04);
}

/* HAMBURGER MENU BUTTON (MOBILE) */
.mobile-menu-toggle {
  display: none;
  background: #fff;
  border: 1px solid #C5C5C5;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  font-size: 2.2rem;
  color: #23447A;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 20px;
  top: 16px;
  z-index: 35;
  cursor: pointer;
  transition: background 0.18s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #eee;
}

/* MOBILE NAV OVERLAY */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100vw;
  width: 88vw;
  max-width: 370px;
  height: 100vh;
  background: #fff;
  box-shadow: -7px 0 32px rgba(0,0,0,0.21);
  z-index: 1000;
  flex-direction: column;
  padding: 36px 20px 20px 30px;
  transition: transform 0.35s cubic-bezier(.6,.01,0,1), right 0s 0.36s;
  will-change: transform;
  overflow-y: auto;
}
.mobile-menu.open {
  display: flex;
  right: 0;
  transform: translateX(0);
  transition: transform 0.33s cubic-bezier(.47,.06,.38,.99);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #222;
  font-size: 2rem;
  position: absolute;
  right: 22px;
  top: 17px;
  cursor: pointer;
  z-index: 2000;
  padding: 8px 12px;
  border-radius: 50%;
  transition: background 0.15s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #f8f8f8;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 32px;
}
.mobile-nav a {
  font-size: 1.12rem;
  color: #222;
  padding: 12px 0 12px 2px;
  border-radius: 4px;
  font-weight: 500;
  transition: background 0.16s, color 0.16s;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  color: #23447A;
  background: #F4F4F7;
}

/* =========================
   MOBILE MENU RESPONSIVENESS
========================== */
@media (max-width: 1020px) {
  .main-nav ul {
    gap: 16px;
  }
  .main-nav .cta {
    margin-left: 16px;
  }
}
@media (max-width: 900px) {
  .main-nav ul {
    gap: 10px;
  }
  .main-nav .cta {
    padding: 10px 24px;
    margin-left: 10px;
  }
}
@media (max-width: 820px) {
  .main-nav ul {
    display: none;
  }
  .main-nav .cta {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

@media (max-width: 768px) {
  .main-nav {
    padding: 16px 10px 16px 10px;
  }
  header {
    min-height: 48px;
  }
}

/* =========================
   HERO SECTIONS
=========================== */
.hero {
  background: #fff;
  padding: 70px 0 50px 0;
  min-height: 300px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #ececec;
}
.hero .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero h1 {
  color: #111;
}
.hero .cta {
  margin-top: 16px;
}


/* =========================
   FEATURE GRIDS & CARDS
============================ */
.features, .services, .cta-section, .thank-you-section, .about, .policy-section, .faq-section, .contact-section, .testimonials {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #FAFAFB;
  border-radius: 22px;
  box-shadow: 0 2px 16px rgba(34,34,34,0.045);
}

/* MAIN FLEX CONTAINER RULES */
.feature-grid, .advantages-grid, .service-list, .course-grid, .bio-list, .testimonial-slider, .faq-list, .next-steps, .included-features, .feature-list, .process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
  margin-bottom: 20px;
}
.course-grid, .feature-grid, .advantages-grid, .process-steps {
  justify-content: flex-start;
  align-items: stretch;
}
.bio-list {
  gap: 20px;
}

.feature, .advantage, .service, .course, .step, .bio {
  background: #fff;
  border-radius: 17px;
  box-shadow: 0 2px 14px rgba(20, 20, 20, 0.05);
  padding: 28px 22px 28px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  min-width: 220px;
  max-width: 340px;
  flex: 1 0 220px;
  margin-bottom: 20px;
  border: 1px solid #EEE;
  position: relative;
  transition: box-shadow 0.26s cubic-bezier(.57,0,.41,1), transform 0.13s;
}
.feature:hover, .advantage:hover, .service:hover, .course:hover, .step:hover, .bio:hover {
  box-shadow: 0 12px 34px rgba(34,68,122,0.07);
  transform: translateY(-3px) scale(1.017);
  z-index: 1;
}
.feature img, .advantage img, .step img {
  height: 36px;
  margin-bottom: 5px;
}
.price {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.18rem;
  color: #23447A;
  letter-spacing: 0.01em;
  margin-top: auto;
}
.enroll-btn {
  margin-top: 14px;
  background: #181818;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 25px;
  padding: 7px 24px;
  box-shadow: 0 3px 12px rgba(34,34,34,0.06);
  border: none;
  cursor: pointer;
  text-align: center;
  transition: background 0.16s, transform 0.14s;
  display: inline-block;
}
.enroll-btn:hover, .enroll-btn:focus {
  background: #23447A;
  color: #fff;
  transform: translateY(-2px) scale(1.02);
}

/* ================================
   RESPONSIVE FEATURE & CARD GRIDS
================================= */
@media (max-width: 992px) {
  .feature-grid, .advantages-grid, .course-grid, .process-steps {
    gap: 16px;
  }
  .feature, .advantage, .course, .step {
    min-width: 170px;
    max-width: 99%;
  }
}
@media (max-width: 680px) {
  .feature-grid, .advantages-grid, .service-list, .course-grid, .process-steps, .testimonial-slider, .bio-list {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
  .feature, .advantage, .service, .course, .step, .bio {
    max-width: 100%;
    min-width: 0;
    flex: 1 1 100%;
    padding: 20px 14px 20px 14px;
  }
}

/* ==========================
SERVICE & COURSE LIST STYLES
=========================== */
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
  margin-bottom: 24px;
}
.service {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1px 8px rgba(40, 40, 40, 0.07);
  padding: 22px 20px;
  min-width: 200px;
  max-width: 340px;
  flex: 1 0 200px;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  border: 1px solid #EFEFEF;
  transition: box-shadow 0.2s, transform 0.12s;
}
.service:hover {
  box-shadow: 0 10px 30px rgba(20,20,20,0.08);
  transform: scale(1.019);
  z-index: 2;
}
@media (max-width: 680px) {
  .service-list {
    flex-direction: column;
    gap: 15px;
    margin-bottom: 10px;
  }
  .service {
    max-width: 100%;
    min-width: 0;
    padding: 17px 10px;
  }
}

/* =========================
   FEATURE LIST & INCLUDED
========================== */
.feature-list, .included-features {
  display: flex;
  flex-direction: column;
  gap: 17px;
  margin-top: 22px;
  margin-bottom: 18px;
}
.feature-list li, .included-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #222;
  font-size: 1.06rem;
  margin-bottom: 4px;
}
.feature-list img, .included-features img {
  height: 22px;
  width: 22px;
  margin-top: 2px;
}

/* =============================
   TESTIMONIAL & RATING STYLES
============================= */
.testimonials {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 2px 14px rgba(45, 45, 45, 0.05);
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
  margin-top: 20px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #F8F8FA;
  border-radius: 14px;
  box-shadow: 0 1px 8px rgba(40, 40, 40, 0.06);
  padding: 20px;
  margin-bottom: 20px;
  max-width: 480px;
  flex: 1 1 260px;
  border-left: 4px solid #23447A;
}
.testimonial-card p {
  font-size: 1.11rem;
  line-height: 1.5;
  color: #232323;
  margin-bottom: 6px;
}
.testimonial-card strong {
  color: #23447A;
  font-size: 1.07rem;
}
.rating-summary {
  background: #F1F1F4;
  padding: 10px 20px;
  border-radius: 12px;
  box-shadow: 0 1px 9px rgba(80, 80, 80, 0.04);
  margin-top: 18px;
  font-size: 1.05rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #181818;
}

@media (max-width: 650px) {
  .testimonial-slider {
    flex-direction: column;
    gap: 13px;
  }
  .testimonial-card {
    max-width: 100%;
    border-left-width: 3px;
    padding: 15px 10px;
  }
}

/* ============================
      FAQ & POLICY SECTIONS
============================ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-item {
  background: #fff;
  border-radius: 10px;
  padding: 20px 18px 20px 18px;
  border-left: 4px solid #23447A;
  margin-bottom: 8px;
  box-shadow: 0 1px 6px rgba(35,68,122,0.04);
      transition: box-shadow 0.17s;
}
.faq-item:hover {
  box-shadow: 0 8px 16px rgba(35,68,122,0.06);
}
.faq-item h2 {
  color: #181818;
  font-weight: 600;
  font-size: 1.18rem;
  margin-bottom: 9px;
}
.faq-item .answer {
  color: #373737;
  font-size: 1.04rem;
  margin-bottom: 0;
}
.contact-for-question {
  margin-top: 34px;
  font-size: 1.07rem;
  color: #181818;
}
.contact-for-question a {
  color: #23447A;
  text-decoration: underline;
}
.policy-section, .about {
  background: #FAFAFA;
  border-radius: 18px;
  box-shadow: 0 2px 10px rgba(34,34,34,0.04);
}
.policy-text {
  margin-top: 18px;
  color: #232323;
  font-size: 1.06rem;
  font-family: 'Roboto', Arial, sans-serif;
  line-height: 1.7;
}
.policy-text h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.19rem;
  margin-top: 28px;
  margin-bottom: 11px;
}

/* =======================
  PRICING TABLE & EXTRAS
======================= */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 2px 10px rgba(34,34,34,0.06);
  overflow: hidden;
  font-size: 1.05rem;
}
.pricing-table th, .pricing-table td {
  text-align: left;
  padding: 14px 12px;
}
.pricing-table thead {
  background: #212121;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
}
.pricing-table tbody tr {
  border-bottom: 1px solid #eeeeee;
  background: #fff;
}
.pricing-table tbody tr:nth-child(even) {
  background: #F6F6F6;
}

@media (max-width: 630px) {
  .pricing-table th, .pricing-table td {
    padding: 9px 5px;
    font-size: 0.97rem;
  }
  .pricing-table {
    font-size: 0.97rem;
  }
}

/* =========================
    CALL TO ACTION SECTION
========================== */
.cta-section {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(34,34,34,0.05);
  text-align: left;
}
.cta-section .cta {
  margin: 20px 0 14px 0;
}

/* CTA BUTTONS */
.cta {
  display: inline-block;
  background: #111;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 13px 38px;
  border-radius: 33px;
  font-size: 1.09rem;
  font-weight: 600;
  box-shadow: 0 3px 12px rgba(34,34,34,0.07);
  cursor: pointer;
  transition: background 0.18s, color 0.18s, transform 0.13s;
  border: none;
  outline: none;
}
.cta:hover, .cta:focus {
  background: #23447A;
  color: #fff;
  transform: translateY(-3px) scale(1.022);
}

/* CONTACT INFO GRID */
.contact-info {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 1.05rem;
  color: #232323;
}
.contact-info a {
  color: #23447A;
  text-decoration: underline;
}

/* MAP EMBED / LOCATION */
.map-embed {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-top: 20px;
  background: #F7F7F7;
  padding: 16px 14px;
  border-radius: 13px;
}
.map-embed img {
  height: 65px;
  width: 65px;
  border-radius: 7px;
}

@media (max-width: 600px) {
  .map-embed {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 4px;
  }
  .map-embed img {
    height: 40px;
    width: 40px;
  }
}

/* ---------------------------
   BIO & INSTRUCTOR CARDS
--------------------------- */
.instructor-bios {
  margin-top: 32px;
  background: #f7f7ff;
  padding: 28px 22px 16px 22px;
  border-radius: 15px;
  box-shadow: 0 1px 7px rgba(34,34,34,0.04);
}
.instructor-bios h3 {
  font-size: 1.22rem;
  color: #23447A;
  margin-bottom: 18px;
}
.bio-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.bio {
  background: #fff;
  border-radius: 11px;
  box-shadow: 0 1px 6px rgba(34,34,34,0.035);
  padding: 15px 13px 17px 13px;
  max-width: 290px;
  flex: 1 1 130px;
  border: 1px solid #F3F3F3;
  margin-bottom: 20px;
}
.bio h4 {
  color: #222;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.01rem;
  font-weight: 700;
  margin-bottom: 7px;
}

/* -----------------------------
   PROCESS STEPS (How It Works)
------------------------------ */
.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 12px;
}
.step {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 1px 9px rgba(34,34,34,0.05);
  padding: 22px 18px;
  flex: 1 1 180px;
  min-width: 170px;
  max-width: 270px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
  border: 1px solid #ececec;
  transition: box-shadow 0.15s, transform 0.13s;
}
.step:hover {
  box-shadow: 0 7px 22px rgba(34,68,122,0.09);
  transform: scale(1.017);
  z-index: 1;
}
.step img {
  margin-bottom: 0;
}
.step h3 {
  margin-bottom: 4px;
}
@media (max-width: 600px) {
  .process-steps {
    flex-direction: column;
    gap: 14px;
  }
  .step {
    max-width: 100%;
    padding: 14px 7px;
  }
}

/* ---------------------
   STUDENT PROGRESS BOX
---------------------- */
.student-progress {
  margin-top: 32px;
  background: #F4F7FA;
  border-radius: 9px;
  padding: 16px 16px 6px 16px;
  font-size: 1.03rem;
  color: #212121;
  font-family: 'Roboto', Arial, sans-serif;
  box-shadow: 0 1px 6px rgba(34,68,122,0.03);
}
.student-progress ul {
  padding-left: 19px;
  margin: 0 0 0 0;
}
.student-progress li {
  margin-bottom: 11px;
}

/* ========================
   FOOTER STYLES
========================== */
footer {
  background: #181818;
  color: #F6F6F6;
  padding: 46px 0 2px 0;
  position: relative;
  margin-top: 40px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.footer-nav a {
  color: #cacaca;
  font-size: 1.05rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-bottom: 5px;
  transition: color 0.16s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: #fff;
}
.footer-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  margin-bottom: 7px;
}
.footer-info img {
  height: 46px;
  width: auto;
  margin-bottom: 3px;
}
.footer-info p {
  color: #BCBCBC;
  font-size: 1.07rem;
  font-family: 'Roboto', Arial, sans-serif;
  letter-spacing: 0.01em;
}

@media (max-width: 650px) {
  footer {
    padding: 28px 0 4px 0;
  }
  .footer-nav {
    gap: 14px;
  }
  .footer-info img {
    height: 30px;
  }
}

/* =============================
  COOKIE CONSENT BANNER/MODAL
============================= */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #212121;
  color: #fff;
  z-index: 1500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 23px 18px 19px 22px;
  box-shadow: 0 -2px 18px rgba(32,32,32,0.14);
  gap: 18px;
  font-size: 1.06rem;
  font-family: 'Roboto', Arial, sans-serif;
  transition: transform 0.25s;
}
.cookie-banner.hidden {
  transform: translateY(120%);
  pointer-events: none;
}
.cookie-banner .cookie-message {
  flex: 1 1 auto;
  max-width: 480px;
  color: #fff;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
}
.cookie-banner button, .cookie-banner .cookie-settings-btn {
  background: #fff;
  color: #212121;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: 24px;
  padding: 8px 22px;
  margin: 0;
  border: none;
  outline: none;
  cursor: pointer;
  transition: background 0.13s, color 0.13s, transform 0.12s;
  box-shadow: 0 1px 6px rgba(255,255,255,0.05);
}
.cookie-banner button.accept { background: #23447A; color: #fff; }
.cookie-banner button.reject { background: #D8D8D8; color: #212121; }
.cookie-banner button:focus,
.cookie-banner button:hover,
.cookie-banner .cookie-settings-btn:focus,
.cookie-banner .cookie-settings-btn:hover {
  background: #111;
  color: #fff;
  transform: translateY(-1px) scale(1.025);
}

@media (max-width: 650px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    padding: 13px 6px 13px 7px;
    font-size: 0.97rem;
    gap: 12px;
  }
  .cookie-banner .cookie-actions {
    flex-direction: column;
    gap: 9px;
  }
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(32,32,33,0.58);
  z-index: 1700;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(2.5px);
}
.cookie-modal-overlay.open {
  display: flex;
}
.cookie-modal {
  background: #fff;
  color: #181818;
  border-radius: 14px;
  padding: 38px 32px 30px 32px;
  box-shadow: 0 7px 48px rgba(45,45,45,0.19);
  max-width: 410px;
  min-width: 270px;
  min-height: 210px;
  z-index: 1900;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: cookie-fadein 0.3s cubic-bezier(.49,.13,.22,.86);
}
@keyframes cookie-fadein {
  from { opacity: 0; transform: translateY(60px) scale(.98); }
  to { opacity:1; transform:translateY(0) scale(1); }
}
.cookie-modal h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.18rem;
  margin-bottom: 16px;
}
.cookie-modal .category-toggles {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 12px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #eaeaea;
}
.cookie-modal .cookie-category:last-child {
  border-bottom: none;
}
.cookie-modal .category-label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  color: #111;
  font-size: 1.09rem;
}
.cookie-modal .cookie-toggle {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.cookie-modal .cookie-switch {
  width: 36px;
  height: 20px;
  border-radius: 12px;
  background: #e7e7e7;
  position: relative;
  cursor: pointer;
  transition: background 0.16s;
  margin-left: 7px;
}
.cookie-modal .cookie-switch[aria-checked='true'] {
  background: #23447A;
}
.cookie-modal .cookie-thumb {
  position: absolute;
  left: 2px;
  top: 2px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 6px rgba(34,68,122,0.14);
  transition: left 0.2s cubic-bezier(.47,1.64,.41,1), background 0.14s;
}
.cookie-modal .cookie-switch[aria-checked='true'] .cookie-thumb {
  left: 18px;
  background: #F7F7FF;
}
.cookie-modal .cookie-category .locked {
  font-size: 1.07rem;
  color: #717171;
  margin-left: 8px;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin-top: 10px;
}
.cookie-modal .cookie-modal-actions button {
  background: #23447A;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 20px;
  padding: 8px 22px;
  font-size: 1.05rem;
  font-weight: 600;
  border: none;
  outline: none;
  cursor: pointer;
  transition: background 0.14s, color 0.13s;
}
.cookie-modal .cookie-modal-actions button.cancel {
  background: #d4d4d4;
  color: #222;
}
.cookie-modal .cookie-modal-actions button:focus, .cookie-modal .cookie-modal-actions button:hover {
  background: #111;
  color: #fff;
}
.cookie-modal .modal-close {
  position: absolute;
  right: 10px;
  top: 11px;
  font-size: 1.45rem;
  background: transparent;
  color: #222;
  border: none;
  cursor: pointer;
  border-radius: 50%;
  padding: 4px 9px;
  transition: background 0.14s;
}
.cookie-modal .modal-close:focus, .cookie-modal .modal-close:hover {
  background: #F1F1F1;
}
@media (max-width: 460px) {
  .cookie-modal {
    min-width: 98vw;
    max-width: 98vw;
    padding: 19px 5vw 17px 5vw;
    font-size: 0.98rem;
  }
}

/* =============================
   FLEX LAYOUT PATTERN CLASSES
============================= */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 14px rgba(34,68,122,0.08);
  padding: 28px 22px;
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 220px;
}
.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ===========================
     TRANSITIONS & EFFECTS
=========================== */
* {
  transition: box-shadow 0.18s, color 0.13s, background 0.13s, border-color 0.14s;
}

/* ====== UTILITY SPACING ===== */
.mb-0 { margin-bottom: 0; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-28 { margin-bottom: 28px; }
.mb-40 { margin-bottom: 40px; }
.gap-8 { gap: 8px; }
.gap-16 { gap: 16px; }
.gap-20 { gap: 20px; }
.gap-24 { gap: 24px; }
.gap-32 { gap: 32px; }

/* ===========================
     SCROLLBARS (Mono style)
=========================== */
::-webkit-scrollbar {
  width: 8px;
  background: #eaeaea;
}
::-webkit-scrollbar-thumb {
  background: #B4B4B4;
  border-radius: 4px;
}

/* ===========================
       MONOCHROME VARIANTS
=========================== */
body, .section, .features, .services, .policy-section, .about, .faq-section, .testimonials, .thank-you-section {
  background: #FAFAFB;
  color: #212121;
}
.feature, .advantage, .service, .step, .bio, .course, .card, .faq-item, .testimonial-card, .instructor-bios, .student-progress {
  background: #fff;
  color: #212121;
}

/* Ensuring high-contrast text for testimonials/reviews */
.testimonial-card, .testimonial-card p, .testimonial-card strong, .rating-summary {
  color: #1a1a1a !important;
  background: #F8F8FA !important;
}

/* ======================
      RESPONSIVE LAYOUT
======================= */
@media (max-width: 768px) {
  .container {
    padding-left: 7px;
    padding-right: 7px;
  }
  h1 {
    font-size: 2rem;
    margin-bottom: 19px;
  }
  h2 {
    font-size: 1.43rem;
  }
  section, .section {
    margin-bottom: 35px;
    padding: 24px 4px;
  }
  .content-wrapper {
    padding: 0;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 1.4rem;
  }
  h2 {
    font-size: 1.09rem;
  }
}

/* ============
   MISC UTILITY
==============*/
.sr-only {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* =================
   OVERRIDE BROWSER 
===================*/
::-moz-selection { background: #23447A; color: #fff; }
::selection { background: #23447A; color: #fff; }

/* =======================
  END OF MAIN CSS STYLES
======================== */
