/* ========================================================
   CSS RESET & BASE NORMALIZE FOR CONSISTENCY
   ======================================================== */
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;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  height: 100%;
}
body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  background: #F8FAFC;
  color: #1E2A44;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
img, svg {
  max-width: 100%;
  display: block;
  height: auto;
}
*, *::before, *::after {
  box-sizing: inherit;
}
:focus {
  outline: 2px solid #F5C144;
  outline-offset: 2px;
}
a {
  color: #1E2A44;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus { color: #F5C144; }
ul, ol { padding-left: 24px; }
strong, b { font-weight: 700; }

/* ========================================================
   VARIABLE FALLBACKS (Non-CSS Variables for Compatibility)
   ======================================================== */
:root {
  /* Font Fallbacks */
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Roboto', Arial, Helvetica, sans-serif;
}

/* ========================================================
   BRAND COLOR SYSTEM – GRADIENT MODERN
   ======================================================== */
.bg-gradient-primary {
  background: linear-gradient(90deg, #1E2A44 0%, #274064 100%);
}
.bg-gradient-secondary {
  background: linear-gradient(90deg, #F5C144 0%, #FFEBA2 100%);
}
.bg-light {
  background: #fff;
}
.bg-dark {
  background: #1E2A44;
  color: #fff;
}
.brand-primary { color: #1E2A44; }
.brand-secondary { color: #F5C144; }
.brand-accent { color: #ffffff; }

/* ========================================================
   TYPOGRAPHY SCALE
   ======================================================== */
h1, .h1 { font-family: var(--font-display); font-size: 2.375rem; font-weight: 800; line-height: 1.08; margin-bottom: 18px; color: #1E2A44; letter-spacing: -1px; }
h2, .h2 { font-family: var(--font-display); font-size: 1.875rem; font-weight: 700; line-height: 1.15; margin-bottom: 16px; letter-spacing: -0.5px; }
h3, .h3 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; line-height: 1.25; margin-bottom: 10px; }
h4, .h4 { font-size: 1.1rem; font-weight: 600; margin-bottom: 8px; }
p, li, ul, blockquote {
  font-family: var(--font-body);
  font-size: 1rem;
  color: #1E2A44;
}
p.subheadline {
  font-size: 1.25rem;
  color: #274064;
  margin-bottom: 28px;
}
/* Responsive typography for mobile */
@media (max-width: 768px) {
  h1, .h1 { font-size: 1.65rem; }
  h2, .h2 { font-size: 1.3rem; }
  h3, .h3 { font-size: 1.1rem; }
  p.subheadline { font-size: 1.05rem; }
}

/* ========================================================
   LAYOUT BASICS & CONTAINER CLASSES
   ======================================================== */
.container {
  width: 100%;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px 0 rgba(30,42,68,0.07);
}
.text-section {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  padding: 20px 0;
}
@media (max-width: 768px) {
  .section {
    padding: 28px 6px;
    margin-bottom: 38px;
  }
  .text-section {
    padding: 10px 0;
  }
}

/* ========================================================
   HEADER NAVIGATION & BRANDING
   ======================================================== */
header {
  background: #fff;
  border-bottom: 1px solid #eceff3;
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 20;
  box-shadow: 0 2px 12px rgba(30, 42, 68, 0.07);
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 12px;
  padding-bottom: 12px;
}
header img {
  height: 44px;
  width: auto;
}
nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}
nav a {
  padding: 9px 10px;
  border-radius: 7px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: #1E2A44;
  transition: background 0.2s, color 0.2s;
}
nav a.cta.primary {
  background: linear-gradient(90deg, #F5C144 20%, #ffe375 100%);
  color: #1E2A44;
  padding: 10px 22px;
  border-radius: 24px;
  font-size: 1.08rem;
  font-weight: 700;
  box-shadow: 0 3px 12px 0 rgba(245,193,68,0.12);
  transition: background 0.18s, box-shadow 0.18s, color 0.2s;
}
nav a.cta.primary:hover, nav a.cta.primary:focus {
  background: linear-gradient(90deg, #ffe375 5%, #F5C144 95%);
  color: #1E2A44;
  box-shadow: 0 4px 20px 0 rgba(245,193,68,0.28);
}
nav a:hover, nav a:focus {
  background: #f9f5ef;
}

/* Hide mobile menu toggle by default */
.mobile-menu-toggle {
  display: none;
}
@media (max-width: 970px) {
  nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #F5C144;
    color: #1E2A44;
    border: none;
    font-size: 2.2rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    margin-left: auto;
    transition: background 0.16s, color 0.16s;
    z-index: 25;
    box-shadow: 0 2px 14px rgba(245,193,68,0.18);
  }
  .mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
    background: #ffe375;
    color: #1E2A44;
  }
}

/* ========================================================
   MOBILE MENU – SLIDE IN/OUT ANIMATION
   ======================================================== */
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; right: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 200;
  transform: translateX(100vw);
  transition: transform 0.35s cubic-bezier(0.33,1,0.68,1);
  box-shadow: -4px 0 16px 0 rgba(30,42,68,0.10);
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 18px;
  right: 22px;
  background: #F5C144;
  border: none;
  font-size: 2rem;
  border-radius: 50%;
  width: 42px; height: 42px;
  color: #1E2A44;
  cursor: pointer;
  z-index: 250;
  box-shadow: 0 0.5px 6px rgba(245,193,68,0.15);
  transition: background 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #ffe375;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin-top: 88px;
}
.mobile-nav a {
  font-size: 1.25rem;
  font-family: var(--font-display);
  font-weight: 700;
  color: #1E2A44;
  padding: 16px 0;
  width: 80vw;
  border-radius: 9px;
  text-align: center;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F5C144;
  color: #fff;
}

/* Hide mobile menu on desktop */
@media (min-width: 970px) {
  .mobile-menu, .mobile-menu-toggle { display: none !important; }
  nav { display: flex !important; }
}

/* ========================================================
   HERO & CALLOUT SECTIONS
   ======================================================== */
section:first-of-type {
  background: linear-gradient(90deg, #F5C144 10%, #FFEBA2 90%);
  box-shadow: 0 3px 60px 0 rgba(245,193,68,0.10);
  border-radius: 0 0 30px 30px;
}
section:first-of-type h1,
section:first-of-type .h1 {
  color: #1E2A44;
}
@media (max-width: 768px) {
  section:first-of-type {
    border-radius: 0 0 15px 15px;
  }
}

/* ========================================================
   FEATURE GRID, CARDS & FLEXIBLE LAYOUTS
   ======================================================== */
.feature-grid, .team-list, .course-preview-list, .course-cards, .post-grid, .pricing-table, .faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 10px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 16px;
  padding: 26px 22px 30px 22px;
  min-width: 220px;
  flex: 1 1 240px;
  box-shadow: 0 4px 32px 0 rgba(30,42,68,0.06);
  border: 1px solid #f7eec7;
  margin-bottom: 20px;
  transition: transform 0.18s, box-shadow 0.18s;
}
.feature-item img { height: 42px; margin-bottom: 9px; }
.feature-item:hover, .feature-item:focus-within {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 10px 40px 0 rgba(245,193,68,0.15);
}

.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;
}
@media (max-width: 900px) {
  .feature-grid, .team-list, .course-preview-list, .course-cards, .post-grid, .pricing-table, .faq-list, .content-grid, .card-container {
    gap: 18px;
  }
}
@media (max-width: 768px) {
  .feature-grid, .team-list, .course-preview-list, .course-cards, .post-grid, .pricing-table, .faq-list {
    flex-direction: column;
    gap: 18px;
  }
  .content-grid, .card-container {
    flex-direction: column;
  }
  .text-image-section {
    flex-direction: column;
    gap: 14px;
  }
}

/* COURSE CARDS */
.course-preview-list, .course-cards {
  gap: 20px;
}
.course-item, .course-card, .post-item {
  background: #FFF;
  border-radius: 16px;
  box-shadow: 0 2px 18px 0 rgba(30,42,68,0.08);
  padding: 28px 18px 22px 18px;
  flex: 1 1 260px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 20px;
  border: 1px solid #ececec;
  transition: transform 0.18s, box-shadow 0.18s;
}
.course-card:hover, .post-item:hover, .course-item:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 8px 36px 0 rgba(30,42,68,0.13);
}
.course-item a, .course-card a {
  color: #F5C144;
  font-weight: 700;
  font-size: 1rem;
  margin-top: 14px;
  transition: color 0.18s;
}
.course-item a:hover, .course-card a:hover {
  color: #1E2A44;
}

/* CATEGORIES, FILTER-TABS */
.category-tabs, .categories-filter {
  display: flex;
  gap: 16px;
  font-family: var(--font-display);
  font-size: 1rem;
  color: #1E2A44;
  font-weight: 600;
  margin-bottom: 18px;
  align-items: center;
}
.category-tabs span, .categories-filter span {
  background: #F8FAFC;
  border-radius: 8px;
  padding: 7px 15px;
  transition: background 0.18s;
  cursor: pointer;
}
.category-tabs span:hover, .categories-filter span:hover {
  background: #F5C144;
  color: #fff;
}

/* ========================================================
   TESTIMONIALS / REVIEW CARDS
   ======================================================== */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 32px 20px 24px;
  margin-bottom: 20px;
  background: #fffdf6;
  border-left: 6px solid #F5C144;
  border-radius: 14px;
  box-shadow: 0 4px 24px 0 rgba(245,193,68,0.10);
  max-width: 640px;
  transition: box-shadow 0.16s;
}
.testimonial-card blockquote {
  font-size: 1.18rem;
  color: #1E2A44;
  font-style: italic;
  margin: 0 0 7px 0;
  line-height: 1.5;
}
.testimonial-info {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 1rem;
  color: #1E2A44;
  font-family: var(--font-body);
  opacity: 0.86;
}
.testimonial-card:hover {
  box-shadow: 0 10px 36px 0 rgba(245,193,68,0.15);
}

/* ========================================================
   PRICING TABLES
   ======================================================== */
.pricing-table {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 10px;
  align-items: stretch;
}
.pricing-option {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 18px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px 0 rgba(30,42,68,0.06);
  padding: 32px 26px 36px 26px;
  flex: 1 1 280px;
  min-width: 210px;
  border: 2.5px solid #f7eec7;
  margin-bottom: 20px;
  transition: border 0.16s, box-shadow 0.16s, transform 0.18s;
}
.pricing-option h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1E2A44;
  margin-bottom: 8px;
}
.pricing-option .price {
  font-size: 1.45rem;
  color: #F5C144;
  font-weight: 800;
  margin-bottom: 10px;
}
.pricing-option ul { margin-bottom: 10px; }
.pricing-option li {
  font-size: 1.04rem;
  margin-bottom: 7px;
  color: #1E2A44;
}
.pricing-option .cta.primary { margin-top: 12px; }
.pricing-option:hover {
  border-color: #F5C144;
  transform: translateY(-6px);
  box-shadow: 0 12px 48px 0 rgba(245,193,68,.18);
}
@media (max-width: 875px) {
  .pricing-table { flex-direction: column; }
}

/* ========================================================
   FAQ ACCORDION / FAQ LIST
   ======================================================== */
.faq-list {
  flex-direction: column;
  gap: 16px;
  margin-bottom: 0;
}
.faq-item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 14px 0 rgba(30,42,68,0.06);
  padding: 18px 22px 16px 22px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 20px;
  border-left: 4px solid #F5C144;
}
.faq-item h3 {
  color: #1E2A44;
  font-size: 1.06rem;
  font-family: var(--font-display);
  font-weight: 700;
  margin-bottom: 5px;
}
.faq-item p {
  color: #274064;
  font-size: 1rem;
}

/* ========================================================
   LISTS WITH ICONS (LEARNING OUTCOMES)
   ======================================================== */
.learning-outcomes-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 8px;
  margin-bottom: 8px;
  padding: 0;
}
.learning-outcomes-list li {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 14px 0 rgba(30,42,68,0.08);
  padding: 14px 20px;
  font-size: 1.08rem;
  color: #1E2A44;
}
.learning-outcomes-list img { height: 28px; }

/* ========================================================
   TEAM MEMBERS & QUALIFICATIONS LIST
   ======================================================== */
.team-list {
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 10px;
  align-items: flex-start;
}
.team-member {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 36px 0 rgba(30,42,68,0.08);
  padding: 28px 18px;
  flex: 1 1 240px;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
  border: 1px solid #ececec;
  transition: box-shadow 0.18s, border 0.18s, transform 0.18s;
}
.team-member img { height: 48px; margin-bottom: 6px; }
.team-member:hover, .team-member:focus-within {
  box-shadow: 0 14px 48px 0 rgba(245,193,68,0.13);
  border: 1.8px solid #F5C144;
  transform: translateY(-6px) scale(1.015);
}
.qualifications-list {
  list-style: none;
  padding: 0;
  margin-bottom: 9px;
}
.qualifications-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 6px;
}
.qualifications-list li::before {
  content: '\2022';
  color: #F5C144;
  position: absolute;
  left: 0; top: 2px;
  font-size: 1.6em;
}

/* ========================================================
   BUTTONS & CALL TO ACTIONS
   ======================================================== */
.cta, .cta.primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  border-radius: 32px;
  padding: 10px 28px;
  font-size: 1.1rem;
  background: linear-gradient(90deg, #F5C144 25%, #ffe375 90%);
  color: #1E2A44;
  border: none;
  cursor: pointer;
  box-shadow: 0 3px 24px 0 rgba(245,193,68,0.14);
  transition: background 0.20s, color 0.17s, box-shadow 0.17s, transform 0.17s;
  text-shadow: none;
  margin-top: 18px;
}
.cta.primary:hover, .cta.primary:focus {
  background: linear-gradient(90deg,#ffe375 10%, #F5C144 95%);
  color: #1E2A44;
  transform: translateY(-3px) scale(1.025);
  box-shadow: 0 12px 34px 0 rgba(245,193,68,0.25);
}
.cta.secondary {
  background: #1E2A44;
  color: #fff;
  box-shadow: 0 4px 20px rgba(30,42,68,0.10);
}
.cta.secondary:hover, .cta.secondary:focus {
  background: #274064;
}

/* ========================================================
   CONTACT INFORMATION
   ======================================================== */
.contact-information, .business-hours {
  background: #f5faff;
  border-radius: 8px;
  padding: 16px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}
.contact-information div {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #1E2A44;
  font-size: 1rem;
}
.business-hours {
  background: #fffcef;
}
.map {
  background: #fff;
  border-radius: 9px;
  padding: 14px 18px;
  border: 1px solid #ececec;
  box-shadow: 0 2px 14px 0 rgba(30,42,68,0.04);
}
.map img { height: 48px; margin-bottom: 8px; }

/* ========================================================
   FOOTER STYLES
   ======================================================== */
footer {
  background: #1E2A44;
  color: #fff;
  padding: 38px 0 25px 0;
  margin-top: 55px;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  padding: 0 24px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-links a {
  color: #fff;
  font-family: var(--font-body);
  font-size: 1rem;
  opacity: 0.9;
  padding: 2.5px 0;
  transition: color 0.16s, opacity 0.18s;
}
.footer-links a:hover { color: #F5C144; opacity: 1; }
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}
.footer-contact img:first-child {
  height: 36px;
  margin-bottom: 7px;
}
.footer-contact address {
  font-style: normal;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 4px;
}
.footer-contact div {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.99rem;
  color: #fff;
  opacity: 0.95;
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

/* ========================================================
   COOKIE CONSENT BANNER
   ======================================================== */
.cookie-consent-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #1E2A44;
  color: #fff;
  z-index: 300;
  box-shadow: 0 -4px 30px rgba(30,42,68,0.09);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  padding: 18px 16px;
  gap: 20px;
  font-size: 1.1rem;
  transition: transform 0.32s;
}
.cookie-consent-banner.hide {
  transform: translateY(100%);
}
.cookie-consent-banner .cookie-actions {
  display: flex;
  gap: 13px;
}
.cookie-consent-banner button {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  border-radius: 22px;
  border: none;
  padding: 9px 19px;
  cursor: pointer;
  margin-left: 0;
  margin-right: 0;
  background: #fff;
  color: #1E2A44;
  margin-top: 0;
  transition: background 0.16s, color 0.16s;
}
.cookie-consent-banner button.accept {
  background: #F5C144;
  color: #1E2A44;
  margin-right: 7px;
}
.cookie-consent-banner button.accept:hover, .cookie-consent-banner button.accept:focus {
  background: #ffe375;
  color: #1E2A44;
}
.cookie-consent-banner button.reject {
  background: #fff;
  color: #1E2A44;
}
.cookie-consent-banner button.reject:hover, .cookie-consent-banner button.reject:focus {
  background: #f8f8f8;
  color: #1E2A44;
}
.cookie-consent-banner button.settings {
  background: #1E2A44;
  color: #fff;
  border: 1.5px solid #F5C144;
}
.cookie-consent-banner button.settings:hover, .cookie-consent-banner button.settings:focus {
  background: #F5C144;
  color: #1E2A44;
}
@media (max-width: 600px) {
  .cookie-consent-banner {
    flex-direction: column;
    padding: 17px 6px;
    gap: 10px;
    font-size: 0.99rem;
  }
  .cookie-consent-banner .cookie-actions {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }
  .cookie-consent-banner button {
    width: 100%;
  }
}

/* COOKIE SETTINGS MODAL */
.cookie-settings-modal {
  display: none;
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(30,42,68,0.65);
  z-index: 999;
  align-items: center;
  justify-content: center;
  transition: background 0.22s;
}
.cookie-settings-modal.active {
  display: flex;
}
.cookie-settings-dialog {
  background: #fff;
  color: #1E2A44;
  border-radius: 16px;
  padding: 32px 28px 28px 28px;
  max-width: 420px;
  width: 94vw;
  box-shadow: 0 8px 52px 0 rgba(30,42,68,0.17);
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: slideup 0.42s cubic-bezier(.23,1.56,.49,.98);
}
@keyframes slideup {
  from { transform: translateY(60px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-settings-dialog h2 {
  font-size: 1.28rem;
  font-family: var(--font-display);
  font-weight: 700;
  margin-bottom: 9px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 1rem;
  margin-bottom: 14px;
}
.cookie-category label {
  flex: 1;
  cursor: pointer;
}
.cookie-category input[type="checkbox"] {
  width: 22px; height: 22px;
  accent-color: #F5C144;
}
.cookie-category input[disabled] {
  accent-color: #ccc;
  cursor: not-allowed;
}
.cookie-settings-buttons {
  display: flex;
  gap: 16px;
  margin-top: 6px;
}
.cookie-settings-buttons button {
  flex: 1 1 0;
}

/* ========================================================
   TRANSITIONS & MICRO-INTERACTIONS
   ======================================================== */
.section, .content-wrapper, .feature-item, .course-card, .course-item, .testimonial-card, .team-member, .pricing-option, .faq-item, .post-item {
  transition: box-shadow 0.18s, transform 0.18s, border 0.16s, background 0.18s;
}

/* ========================================================
   MISC UTILITY CLASSES FOR SPACING, LAYOUT, HIDING, ETC.
   ======================================================== */
.hide {
  display: none !important;
}
.mt-1 { margin-top: 8px !important; }
.mb-1 { margin-bottom: 8px !important; }
.mt-2 { margin-top: 16px !important; }
.mb-2 { margin-bottom: 16px !important; }
.mt-3 { margin-top: 24px !important; }
.mb-3 { margin-bottom: 24px !important; }
.text-center { text-align: center !important; }

/* ========================================================
   RESPONSIVE FINE-TUNING
   ======================================================== */
@media (max-width: 550px) {
  .container { padding: 0 5px; }
  .section { padding: 18px 2px; }
  h1, .h1 { font-size: 1.11rem; }
  h2, .h2 { font-size: 0.99rem; }
}

/* Accessibility/contrast for testimonial cards */
.testimonial-card, .testimonial-card blockquote, .testimonial-info {
  color: #1E2A44 !important;
}
.testimonial-card {
  background: #fffdf6;
}

/* ========================================================
   End of CSS
   ======================================================== */
