/* ----------------------------------------------------
   NEUTRON VOICE "RETRO VINTAGE" CSS THEME STYLE SHEET
   Mobile-first, Flexbox-only layouts, Retro colors/typography
   ---------------------------------------------------- */

/* ----------- CSS RESET -------------- */
html, body, div, span, h1, h2, h3, h4, h5, h6, p, a, img,
ul, li, footer, header, nav, section, main, article, blockquote,
figure, figcaption, button {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
body {
  min-height: 100vh;
  background: #fff8ed;
  color: #202E58;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 400;
}
img {
  max-width: 100%;
  display: block;
}
ul { list-style: none; }
a {
  color: inherit;
  text-decoration: none;
}
button,
a.btn-primary,
a.btn-secondary {
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
  outline: none;
  border: none;
  background: none;
}

/* --------- TYPOGRAPHY (Vintage/Retro) ----------- */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,800&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700&display=swap');

h1,
h2,
h3,
h4 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #202E58;
  font-weight: 800;
  letter-spacing: -1px;
}
h1 {
  font-size: 2.6rem;
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: 2px 2px 0 #fed993, 4px 4px 0 #fcc90020;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
  line-height: 1.18;
  text-shadow: 1px 1px 0 #fed99370;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #8d5200;
  font-weight: 700;
}
h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
p, li, blockquote {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #48402B;
  margin-bottom: 12px;
  letter-spacing: 0.01em;
}
blockquote {
  font-size: 1.1rem;
  font-style: italic;
  color: #202E58;
  padding-left: 18px;
  border-left: 5px solid #FCC90095;
  margin-bottom: 12px;
  background: #fffbe5;
}
strong { color: #202E58; font-weight: 700; }

/* -------- RETRO COLOR PALETTE (brand + vintage neat) ------- */
:root {
  --nv-primary: #202E58;
  --nv-primary-dark: #1a2546;
  --nv-secondary: #FCC900;
  --nv-accent: #F4F7FB;
  /* Vintage accents */
  --nv-orange: #e98a15;
  --nv-red: #c13740;
  --nv-green: #94b455;
  --nv-cream: #fff8ed;
  --nv-brown: #8d5200;
  --nv-blue-pale: #a6b0d3;
  --nv-offwhite: #f9f5eb;
}

/* -------------- LAYOUT HELPERS ------------------ */
.container {
  width: 100%;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 18px;
  padding-right: 18px;
}
.content-wrapper {
  width: 100%;
  max-width: 930px;
  margin: 0 auto;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fffbe5;
  border-radius: 14px;
  box-shadow: 0 2px 6px 0 #cab17b44;
  border: 2px solid #a0760c22;
  padding: 28px 24px;
  transition: box-shadow 0.24s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 6px 24px 0 #fcc90040;
  transform: translateY(-6px) scale(1.02);
  border-color: #FCC900aa;
}
.content-grid,
.card-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: #fffef6;
  border-radius: 18px;
  border: 2.5px dashed #FCC90088;
  box-shadow: 0 2px 10px 0 #fcc90029;
  margin-bottom: 24px;
  transition: background 0.2s, box-shadow 0.18s;
}
.testimonial-card:hover {
  background: #fffae0;
  box-shadow: 0 8px 24px #FCC90022;
}
.testimonial-info {
  margin-top: 5px;
  color: #8d5200;
  font-style: italic;
  font-weight: 600;
  font-size: 1.03rem;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fffbe7;
  border-radius: 13px;
  padding: 22px 18px 18px 18px;
  box-shadow: 0 2px 8px #DAB25624;
  margin-bottom: 20px;
  border: 2px solid #fcc90021;
  transition: box-shadow 0.18s, border 0.2s;
}
.feature-item img {
  width: 34px; height: 34px;
}
.feature-item:hover {
  border: 2px solid #FCC900cc;
  box-shadow: 0 4px 15px #fcc90030;
}

/* ---- FLEX INTERIOR LAYOUTS ------ */
.feature-grid,
.skills-grid,
.instructor-bios,
.latest-articles-list,
.course-overview-cards,
.course-list-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 28px;
  justify-content: flex-start;
}
.feature-grid > .feature-item,
.skills-grid > .skill-item,
.course-overview-cards > .course-card,
.course-list-cards > .course-card,
.instructor-bios > .instructor-card {
  flex: 1 1 250px;
  min-width: 220px;
  margin-bottom: 0;
}
@media (max-width: 900px) {
  .feature-grid > .feature-item,
  .skills-grid > .skill-item,
  .course-overview-cards > .course-card,
  .course-list-cards > .course-card,
  .instructor-bios > .instructor-card {
    min-width: 190px;
    flex-basis: calc(50% - 16px);
  }
}
@media (max-width: 640px) {
  .feature-grid,
  .skills-grid,
  .course-overview-cards,
  .course-list-cards,
  .instructor-bios,
  .content-grid {
    flex-direction: column;
    gap: 16px;
  }
  .feature-grid > .feature-item,
  .skills-grid > .skill-item,
  .course-overview-cards > .course-card,
  .course-list-cards > .course-card,
  .instructor-bios > .instructor-card {
    min-width: 0;
    flex-basis: 100%;
  }
}

/* ------- NAVIGATION & HEADER -------- */
header {
  width: 100%;
  background: #F6E3A8;
  border-bottom: 3px solid #FCC90055;
  box-shadow: 0 2px 12px #dab25620;
  z-index: 500;
}
.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
  gap: 16px;
}
.logo img { height: 46px; }
.main-nav {
  display: flex;
  gap: 26px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  color: #202E58;
  transition: color 0.16s;
  border-radius: 6px;
  padding: 4px 8px;
}
.main-nav a:hover {
  color: #c13740;
  background: #FCC90022;
}
.main-nav .btn-primary {
  color: #fff;
  background: #c13740;
  padding: 8px 20px;
  border-radius: 7px;
  font-size: 1.07rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  box-shadow: 0 1px 12px #c1374032;
  margin-left: 16px;
  letter-spacing: 0.02em;
  border: 2px solid #c13740;
  transition: background 0.15s, color 0.15s;
}
.main-nav .btn-primary:hover {
  background: #FCC900;
  color: #202E58;
  border-color: #202E58;
}

/* ------------- MOBILE NAV ------------- */
.mobile-menu-toggle {
  display: none;
  background: #FCC900;
  color: #202E58;
  font-size: 2rem;
  border-radius: 9px;
  padding: 5px 10px;
  border: 2px solid #c13740;
  margin-left: 14px;
  z-index: 1151;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #c13740;
  color: #fff;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 1450;
  background: #FCC900ee;
  box-shadow: 0 6px 32px #202E5876;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(.74,-0.29,.97,.24);
  padding: 0 0 0 0;
  align-items: flex-start;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.2rem;
  color: #c13740;
  margin: 18px 22px 12px 0;
  background: transparent;
  border: none;
  z-index: 1502;
  cursor: pointer;
  transition: color 0.12s;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  color: #202E58;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  margin-top: 18px;
  padding-left: 38px;
  width: 80%;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.18rem;
  font-weight: 700;
  color: #202E58;
  padding: 9px 0;
  border-bottom: 1.5px dashed #202E58;
  width: 100%;
}
.mobile-nav a:active, .mobile-nav a:hover {
  color: #c13740;
  background: #ffd16593;
}

@media (max-width: 1024px) {
  .main-nav {
    gap: 18px;
  }
}
@media (max-width: 820px) {
  .main-nav {
    gap: 10px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* ------------- HERO / CTA BUTTONS (Retro) --------------- */
.btn-primary, a.btn-primary {
  display: inline-block;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  font-size: 1.08rem;
  color: #fff;
  background: #c13740;
  padding: 13px 32px;
  border: 2px solid #FCC900;
  border-radius: 10px;
  box-shadow: 0 4px 24px #FCC90040;
  text-shadow: 1px 1px 0 #a0353a22;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-right: 8px;
  margin-top: 8px;
  margin-bottom: 8px;
  transition: background 0.2s, color 0.18s, border 0.16s, box-shadow 0.22s, transform 0.18s;
  outline: none;
}
.btn-primary:hover, a.btn-primary:hover,
.btn-primary:focus, a.btn-primary:focus {
  background: #FCC900;
  color: #202E58;
  border-color: #c13740;
  box-shadow: 0 8px 38px #202E5822;
  transform: scale(1.035);
}

.btn-secondary, a.btn-secondary {
  display: inline-block;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.05rem;
  color: #202E58;
  background: #FCC900;
  padding: 11px 26px;
  border: 2px solid #c13740;
  border-radius: 8px;
  font-weight: 700;
  box-shadow: 0 2px 12px #e98a1521;
  margin-top: 8px;
  margin-bottom: 8px;
  margin-right: 8px;
  letter-spacing: 0.025em;
  text-align: center;
  transition: background 0.17s, color 0.18s, border 0.16s, box-shadow 0.14s, transform 0.16s;
}
.btn-secondary:hover, a.btn-secondary:hover, .btn-secondary:focus, a.btn-secondary:focus {
  background: #c13740;
  color: #fff;
  border-color: #FCC900;
  box-shadow: 0 7px 22px #c1374023;
  transform: scale(1.024);
}

/* --------------- HERO SECTION (Nostalgic look) -------------- */
.hero {
  background: repeating-linear-gradient(-30deg, #fffbe7 0px, #fffbe7 18px, #f7ecb6 18px, #f7ecb6 32px);
  padding-top: 48px;
  padding-bottom: 56px;
  border-bottom: 4px solid #FCC90055;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 32px;
}
.hero h1 {
  color: #202E58;
  text-shadow: 4px 4px 0 #FCC90095, 0 1px 0 #fffbe7;
}
.hero p {
  font-size: 1.09rem;
  max-width: 750px;
  color: #8d5200;
  text-shadow: 1px 0 #fffbe7;
}

@media (max-width: 700px) {
  .hero {
    padding-top: 32px; padding-bottom: 32px;
  }
  .hero h1 {
    font-size: 2.1rem;
  }
}

/* --------------- FEATURE / COURSE / SKILL CARDS ---------------- */
.course-card, .skill-item, .instructor-card {
  background: #fffbe6;
  border-radius: 13px;
  border: 2px solid #F6E3A8;
  box-shadow: 0 2px 10px #FCC90023;
  padding: 28px 20px 24px 20px;
  margin-bottom: 20px;
  transition: box-shadow 0.19s, border 0.14s, transform 0.13s;
}
.course-card:hover, .skill-item:hover, .instructor-card:hover {
  box-shadow: 0 8px 28px #FCC90042;
  border-color: #FCC900;
  transform: translateY(-5px) scale(1.018);
}

/* --------------- TESTIMONIALS & SUCCESS STORIES -------------- */
.testimonials, .testimonial-list {
  margin-top: 20px;
}
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
@media (max-width: 700px) {
  .testimonial-list {
    flex-direction: column;
    gap: 16px;
  }
}

.before-after-stories {
  margin: 24px 0 12px 0;
  padding: 0 4px;
  font-size: 1.08rem;
  color: #8d5200;
}
.before-after-stories li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 16px;
}
.before-after-stories li:before {
  content: '\2605'; /* Vintage star bullet */
  color: #FCC900;
  position: absolute;
  left: 0; top: 0;
  font-size: 1.1em;
}

/* ---------------- BLOG PAGE ------------------ */
.blog-overview {
  background: repeating-linear-gradient(-8deg, #fffbe7 0px, #fffbe7 20px, #f7ecb6 20px, #f7ecb6 36px);
  padding: 38px 0 26px 0;
}
.categories-filter {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.category-link {
  color: #8d5200;
  font-weight: 600;
  font-size: 1.01rem;
  background: #FCC90033;
  border-radius: 6px;
  padding: 3px 12px;
  margin-right: 4px;
  transition: background 0.13s, color 0.11s;
}
.category-link:focus, .category-link:hover {
  background: #c13740;
  color: #fff;
}
.featured-post {
  background: #FCC90032;
  border-left: 6px solid #e98a15;
  padding: 20px 24px 20px 24px;
  border-radius: 11px;
  margin-bottom: 22px;
  box-shadow: 0 3px 10px #FCC90012;
}
.latest-articles-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
  margin-top: 8px;
}
.latest-articles-list article {
  background: #fffbeb;
  box-shadow: 0 1px 4px #FCC90023;
  border-left: 4px solid #c13740;
  border-radius: 8px;
  padding: 16px 18px 6px 18px;
}

/* ----------- ABOUT / TEAM / ADVANTAGES ------------- */
.tagline-highlight {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #cc9923;
  background: #fff3c1;
  border-radius: 8px;
  padding: 11px 20px;
  margin: 17px 0 7px 0;
  box-shadow: 0 2px 6px #FCC90018;
  font-weight: 700;
  font-size: 1.1rem;
}
.advantages ul,
.team ul,
.levels-overview ul,
.compare-courses ul,
.skills-features .learning-descriptions {
  margin-bottom: 18px;
  padding-left: 6px;
}
.advantages ul li,
.team ul li,
.levels-overview ul li,
.compare-courses ul li,
.skills-features .learning-descriptions li {
  position: relative;
  margin-left: 16px;
  margin-bottom: 10px;
  padding-left: 18px;
}
.advantages ul li:before,
.team ul li:before,
.levels-overview ul li:before,
.compare-courses ul li:before,
.skills-features .learning-descriptions li:before {
  content: '\25a0'; /* square vintage bullet */
  color: #c13740;
  font-size: 0.9em;
  position: absolute;
  left: 0; top: 0.2em;
}

/* ------------ CONTACT SECTIONS -------------- */
.contact-details,
.contact-information {
  margin: 10px 0 22px 0;
  padding: 0 0 0 8px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.contact-details li,
.contact-information li {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 1rem;
  background: #fffbe6;
  padding: 8px 13px;
  border-radius: 5px;
  border-left: 3px solid #FCC900;
}
.contact-details img,
.contact-information img {
  width: 22px;
  height: 22px;
  opacity: 0.82;
}
.map-embed {
  background: #fffae0;
  border: 2px solid #FCC90050;
  border-radius: 7px;
  padding: 13px 18px;
}

/* ------- LEGAL/FOOTER -------- */
footer {
  width: 100%;
  background: #202E58;
  color: #fff8ed;
  padding-top: 36px;
  padding-bottom: 24px;
  margin-top: 64px;
  border-top: 6px solid #FCC90050;
  position: relative;
}
.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.footer-nav a {
  color: #FCC900;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  background: #202E58;
  border-radius: 5px;
  padding: 3px 10px;
  transition: background 0.15s, color 0.14s;
}
.footer-nav a:hover {
  background: #FCC900;
  color: #202E58;
}
.footer-contact {
  font-size: 1rem;
  margin: 10px 0;
  color: #F4F7FB;
}
.footer-legal {
  font-size: 0.98rem;
  color: #b3b4ae;
  margin-top: 10px;
}
footer .logo img { height: 40px; }

@media (max-width: 1000px) {
  .footer-content { flex-direction: column; gap: 18px; align-items: flex-start; }
}

/* ---------- THANK YOU / CONFIRMATION PAGE ---------- */
.thank-you .confirmation-message,
.thank-you .next-steps {
  margin: 24px 0 14px 0;
  background: #f7ecb6;
  border-left: 6px solid #FCC900;
  padding: 18px 25px 14px 18px;
  border-radius: 9px;
  color: #202E58;
}

/* ----------- LEGAL PAGES / POLICY ------------- */
.legal-section {
  background: #fffbe7;
  border-radius: 7px;
  box-shadow: 0 1px 7px #FCC90010;
  margin: 28px 0 34px 0;
  padding: 30px 20px 24px 20px;
}
.legal-section .text-section {
  margin-top: 18px;
}
.legal-section h2 {margin-top:16px;}

/* ------------- MODAL & COOKIE CONSENT BANNER ------------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #fff9e8;
  color: #202E58;
  border-top: 3px solid #FCC90099;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 21px 16px 15px 16px;
  box-shadow: 0 -6px 24px #8d520021;
  animation: banner-in 0.6s cubic-bezier(.36,.68,.17,.98);
}
@keyframes banner-in {
  from { transform:translateY(120px); opacity: 0; }
  to { transform:translateY(0); opacity: 1; }
}
.cookie-banner p {
  font-size: 0.97rem;
  color: #8d5200;
  max-width: 560px;
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 5px;
}
.cookie-btn, .cookie-banner .cookie-btn {
  background: #FCC900;
  color: #202E58;
  border-radius: 7px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  border: 2px solid #c13740;
  box-shadow: 0 1px 7px #c1374022;
  padding: 8px 25px;
  margin-right: 5px;
  transition: background 0.17s, color 0.17s, border 0.17s, transform 0.13s;
}
.cookie-btn:focus, .cookie-btn:hover {
  background: #c13740;
  color: #fff;
  border-color: #FCC900;
}
.cookie-btn.settings {
  background: #202E58;
  color: #fff8ed;
  border-color: #FCC900;
}
.cookie-btn.settings:focus, .cookie-btn.settings:hover {
  background: #c13740;
  color: #fff;
  border-color: #FCC900;
}

/* Cookie modal */
.cookie-modal {
  position: fixed;
  left: 50vw;
  top: 50vh;
  transform: translate(-50%, -50%) scale(0.95);
  padding: 32px 28px 20px 28px;
  background: #fffbe6;
  border: 3px solid #FCC900;
  border-radius: 15px;
  z-index: 2500;
  min-width: 300px;
  max-width: 95vw;
  box-shadow: 0 6px 48px #202E5835;
  display: flex;
  flex-direction: column;
  gap: 17px;
  animation: modal-in 0.37s cubic-bezier(.62,.05,.66,1.07);
}
@keyframes modal-in {
  from { opacity: 0; transform: translate(-50%, -58%) scale(0.86); }
  to { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}
.cookie-modal h3 {
  font-size: 1.3rem;
  color: #202E58;
  margin-bottom: 7px;
}
.cookie-modal ul {
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cookie-modal li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 1.04rem;
  padding: 6px 0 6px 0;
}
.cookie-toggle {
  margin-left: auto;
  width: 46px; height: 24px;
  position: relative;
  display: inline-block;
}
.cookie-toggle input[type="checkbox"] {
  opacity: 0;
  width: 46px; height: 24px;
  position: absolute; left: 0; top: 0;
  z-index: 1;
  cursor: pointer;
}
.cookie-toggle .slider {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: 12px;
  background: #FCC90077;
  transition: background 0.15s;
}
.cookie-toggle input[type="checkbox"]:checked + .slider {
  background: #c13740cc;
}
.cookie-toggle .slider:before {
  content: '';
  position: absolute;
  left: 4px; top: 4px;
  width: 16px; height: 16px;
  background: #fff;
  border-radius: 100%;
  box-shadow: 0 1px 3px #0001;
  transition: transform 0.16s;
}
.cookie-toggle input[type="checkbox"]:checked + .slider:before {
  transform: translateX(20px);
}
.cookie-modal .close-btn {
  background: #c13740;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  padding: 7px 21px;
  margin-top: 13px;
  align-self: flex-end;
  font-weight: 700;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  cursor: pointer;
  transition: background 0.12s, color 0.13s;
}
.cookie-modal .close-btn:focus,
.cookie-modal .close-btn:hover {
  background: #FCC900;
  color: #202E58;
}
.cookie-modal .always-on {
  color: #8d5200;
  font-size: 0.95em;
  margin-left: 8px;
}

/* Cookie-related overlay */
.cookie-modal-overlay {
  position: fixed;
  top: 0; bottom: 0; left: 0; right: 0;
  z-index: 2400;
  background: #202E5877;
  animation: fadein 0.31s;
}
@keyframes fadein {
  from {opacity: 0;} to {opacity:1;}
}

@media (max-width: 500px) {
  .cookie-modal, .cookie-banner { padding: 12px 5vw 12px 5vw; font-size: 0.98rem; }
}

/* -------------- RESPONSIVE UTILS -------------- */
@media (max-width: 900px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.2rem; }
  .container { padding-left: 8px; padding-right: 8px; }
  .content-wrapper { padding: 0 2vw; }
  .footer-content {
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  .text-image-section { flex-direction: column; align-items: flex-start; }
  .content-grid, .card-grid { flex-direction: column; gap: 14px; }
  .main-nav { display: none; }
  .mobile-menu-toggle { display: block; }
}
@media (max-width: 600px) {
  h1 {font-size: 1.25rem;}
  .hero { padding: 20px 0 20px 0; }
  .section { padding: 18px 8px; margin-bottom: 24px; }
  .card, .course-card, .feature-item, .skill-item, .testimonial-card {
    padding: 14px 10px;
  }
}

/* [END of CSS] */
