/* RESET AND 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, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
  margin: 0; padding: 0; border: 0; font-size: 100%; font: inherit; vertical-align: baseline;
}
html { box-sizing: border-box; scroll-behavior: smooth; }
*, *:before, *:after { box-sizing: inherit; }
body {
  background: #fcfcfc;
  color: #243968;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* LUXURY PREMIUM BRAND FONTS */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #243968;
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.7rem; line-height: 1.13; margin-bottom: 24px; }
h2 { font-size: 2rem; line-height: 1.18; margin-bottom: 20px; }
h3 { font-size: 1.32rem; margin-bottom: 16px; font-weight: 600; }
h4 { font-size: 1.15rem; font-weight: 700; margin-bottom: 12px; }
p, ul, li, blockquote { font-size: 1rem; }

strong, b { font-weight: 600; }
em, i { font-style: italic; }
a {
  color: #243968;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus { color: #F5C244; text-decoration: underline; }

img { max-width: 100%; vertical-align: middle; border: none; }

/* BUTTON STYLES - luxury premium */
.cta-primary, .cookie-banner button, .cookie-modal .cookie-btn {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 14px 32px;
  background: #243968;
  color: #fff;
  border: none;
  border-radius: 28px;
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  box-shadow: 0 2px 12px 0 rgba(36,57,104,0.08);
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.14s;
  margin-top: 12px;
  position: relative;
}
.cta-primary {
  background: linear-gradient(90deg, #F5C244 0%, #ffeaaa 100%);
  color: #243968;
  box-shadow: 0 4px 16px 0 rgba(245,194,68,0.17);
  border: 2px solid #F5C244;
  outline: none;
  text-shadow: 0 1px 0 #fff7e0, 0 0 0 #F5C244;
}
.cta-primary:hover, .cta-primary:focus {
  background: linear-gradient(90deg, #ffeaaa 0%, #F5C244 100%);
  color: #000;
  box-shadow: 0 6px 18px 0 rgba(36,57,104,0.13);
  transform: translateY(-2px) scale(1.025);
}

/* Container and Section Layouts */
.container {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 0 16px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0;
}

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

/* Card & Flex Layouts */
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; background: #fff; border-radius: 16px; box-shadow: 0 2px 16px 0 rgba(36,57,104,0.07); transition: box-shadow 0.2s; }
.card:hover, .card:focus { box-shadow: 0 8px 44px 0 rgba(36,57,104,0.13); }
.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; }
.testimonial-card { display: flex; align-items: center; gap: 20px; padding: 20px; margin-bottom: 20px; background: #fff; border-radius: 16px; box-shadow: 0 2px 16px rgba(36,57,104,0.08); border: 1px solid #f3f3f7; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; background: #fff; border-radius: 14px; padding: 20px; box-shadow: 0 1px 8px rgba(36,57,104,0.08); border: 1px solid #f5f6f7; min-width: 224px; margin-bottom: 20px; }

/* HERO SECTION /
.hero {
  background: #243968 url('../assets/hero-bg.jpg') center/cover no-repeat;
  color: #fff;
  padding: 68px 0 64px;
}
.hero .content-wrapper { align-items: flex-start; }
.hero h1, .hero h2 {
  color: #fff;
  font-size: 2.75rem;
  margin-bottom: 20px;
  letter-spacing: 0.015em;
  text-shadow: 0 2px 16px rgba(36,57,104,0.23);
}
.hero p {
  color: #f5f5f9;
  font-size: 1.15rem;
  margin-bottom: 28px;
}
.hero .cta-primary { margin-top: 7px; }

/* NAVIGATION STYLES */
header {
  background: #fff;
  border-bottom: 1.5px solid #f2e5c3;
  position: sticky;
  top: 0;
  z-index: 99;
  min-height: 70px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 16px 16px;
  justify-content: flex-start;
  font-family: 'Montserrat', Arial, sans-serif;
}
.main-nav a {
  color: #243968;
  font-size: 1.03rem;
  letter-spacing: 0.025em;
  padding: 6px 10px;
  font-weight: 600;
  border-radius: 8px;
  transition: background 0.15s, color 0.13s;
  position: relative;
}
.main-nav a.cta-primary {
  color: #243968;
  background: linear-gradient(90deg, #F5C244 0%, #ffeaaa 100%);
  border: 2px solid #F5C244;
  box-shadow: 0 2px 10px rgba(245,194,68,0.11);
  margin-left: 12px;
  font-size: 1.05rem;
}
.main-nav a.cta-primary:hover, .main-nav a.cta-primary:focus {
  color: #000;
  background: linear-gradient(90deg, #ffeaaa 0%, #F5C244 100%);
}
.main-nav a:hover, .main-nav a:focus {
  background: #f7f8fa;
  color: #F5C244;
}
.main-nav img {
  max-height: 40px; margin-right: 10px; vertical-align: middle;
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  background: #fff;
  color: #243968;
  font-size: 2.2rem;
  border: none;
  padding: 0 14px;
  margin-left: auto;
  cursor: pointer;
  z-index: 101;
  transition: color 0.17s;
  border-radius: 9px;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  color: #F5C244;
  background: #f6f6f9;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(255,255,255,0.97);
  z-index: 1200;
  box-shadow: 0 2px 64px 0 rgba(36,57,104,0.16);
  transform: translateX(-100%);
  transition: transform 0.36s cubic-bezier(0.58,0.28,0.37,1.16);
  visibility: hidden;
  opacity: 0;
}
.mobile-menu.active {
  transform: translateX(0);
  visibility: visible;
  opacity: 1;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 26px 24px 18px 0;
  background: none;
  border: none;
  font-size: 2rem;
  color: #243968;
  cursor: pointer;
  z-index: 1240;
  transition: color 0.15s;
  border-radius: 7px;
}
.mobile-menu-close:hover, .mobile-menu-close:focus { color: #F5C244; background: #f8f9fa; }
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 32px;
  width: 100%;
  gap: 22px;
  margin-top: 26px;
}
.mobile-nav a {
  font-size: 1.27rem;
  color: #243968;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.04em;
  padding: 13px 0 11px 6px;
  width: 100%;
  transition: background 0.15s, color 0.13s;
  border-radius: 8px;
  font-weight: 600;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #F5C244;
  background: #f7f4e5;
}

@media (max-width: 1020px) {
  .main-nav a { font-size: 0.98rem; }
  .main-nav img { max-height: 36px; }
}
@media (max-width: 900px) {
  .main-nav { gap: 14px; }
}
@media (max-width: 768px) {
  .main-nav { display: none; }
  .mobile-menu-toggle { display: block; }
  header { min-height: 65px; }
  .container { padding: 0 7px; }
}

/* SECTION & FLEX GRIDS - LUXURY PREMIUM */
.features .feature-grid,
.course-overview .course-cards,
.course-offerings .course-grid,
.instructor-profiles,
.article-listings {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 18px;
  justify-content: flex-start;
}
@media (max-width: 900px) {
  .features .feature-grid,
  .course-overview .course-cards,
  .course-offerings .course-grid,
  .instructor-profiles,
  .article-listings {
    gap: 18px;
  }
}

.feature-item, .course-card, .instructor-card, .article-card {
  flex: 1 1 245px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 15px 0 rgba(36,57,104,0.08);
  padding: 28px 22px 24px 22px;
  transition: box-shadow 0.18s, border 0.18s, transform 0.13s;
  border: 1.5px solid #f3f2ea;
  position: relative;
  min-width: 210px;
  margin-bottom: 20px;
}
.feature-item:hover, .course-card:hover, .instructor-card:hover, .article-card:hover {
  box-shadow: 0 5px 32px 0 rgba(36,57,104,0.14);
  border-color: #F5C244;
  transform: translateY(-3px) scale(1.022);
  z-index: 1;
}

@media (max-width: 768px) {
  .features .feature-grid,
  .course-overview .course-cards,
  .course-offerings .course-grid,
  .instructor-profiles,
  .article-listings { flex-direction: column; gap: 0; }
  .feature-item, .course-card, .instructor-card, .article-card { min-width: 0; width: 100%; }
  .section { padding: 25px 5px; margin-bottom: 40px; }
}

/* TESTIMONIALS (dark text, high contrast, premium) */
.testimonial-card, .testimonial-list .testimonial-card {
  background: #fff;
  color: #243968;
  border-radius: 16px;
  box-shadow: 0 3px 22px 0 rgba(36,57,104,0.09);
  border: 1px solid #ebebeb;
  padding: 27px 25px 23px 25px;
  margin-bottom: 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  font-size: 1.07rem;
  position: relative;
}
.testimonial-card strong {
  font-weight: 700;
  color: #243968;
  font-family: 'Montserrat', Arial, sans-serif;
}
.testimonial-card blockquote {
  color: #4b4a44;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1.10rem;
  font-style: italic;
  letter-spacing: 0.01em;
  margin-bottom: 7px;
  line-height: 1.6;
}
/* Testimonial slider (/) */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 8px;
  justify-content: flex-start;
}
@media (max-width: 800px) {
  .testimonial-slider { flex-direction: column; gap: 0; }
  .testimonial-card { width: 100%; }
}

/* High contrast for all testimonials */
.testimonial-card, .testimonial-card * {
  color: #243968;
  background: #fff;
}

/* Success metrics/stats */
.success-metrics ul, .statistical-highlights ul {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 12px;
  list-style: disc inside;
  font-size: 1.08rem;
}
@media (max-width: 700px) { .success-metrics ul, .statistical-highlights ul { flex-direction: column; gap: 5px;} }

/* CTA SECTIONS */
.cta-section {
  background: #243968;
  color: #fff;
  border-radius: 22px;
  box-shadow: 0 4px 33px 0 rgba(36,57,104,0.11);
  margin-bottom: 60px;
  padding: 46px 14px;
}
.cta-section h2, .cta-section h3, .cta-section h1 { color: #fff; }
.cta-section p { color: #eeeaea; font-size: 1.13rem; margin-bottom: 16px; }
.cta-section .cta-primary {
  background: linear-gradient(90deg, #F5C244 0%, #f8e596 100%);
  color: #243968;
  box-shadow: 0 2px 13px 0 rgba(245,194,68,0.14);
}
.cta-section .cta-primary:hover, .cta-section .cta-primary:focus {
  background: linear-gradient(270deg, #ffeaaa 0%, #F5C244 100%);
  color: #000;
}

/* Footer */
footer {
  background: #fff;
  color: #243968;
  border-top: 1.5px solid #f2e5c3;
  padding: 28px 0 0 0;
  position: relative;
  z-index: 20;
}
footer .container { padding-bottom: 18px; }
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 14px;
}
.footer-nav a {
  color: #243968;
  font-weight: 600;
  opacity: 0.88;
  transition: color 0.13s, opacity 0.2s;
  border-radius: 6px;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #F5C244;
  opacity: 1;
  background: #f6f6f7;
}
.footer-contact {
  font-size: 1.01rem;
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: #4d4d54;
  margin-bottom: 10px;
}
.footer-contact img { width: 18px; height: 18px; margin-right: 8px; vertical-align: middle; }
.footer-tagline {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.17rem;
  color: #F5C244;
  margin-top: 14px;
  letter-spacing: 0.015em;
}
@media (max-width: 768px) {
  footer .content-wrapper {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
    text-align: left;
  }
  .footer-nav { gap: 9px; font-size: 0.97rem; }
}

/* PAGE SPECIFIC STYLES */
.about-short, .about-story, .values-features, .team-intro, .course-benefits, .instructors-features, .student-experiences, .newsletter-callout, .thank-you-confirmation {
  background: #fff;
  border-radius: 15px;
  margin-bottom: 48px;
  padding: 34px 18px 34px 18px;
  box-shadow: 0 1px 13px 0 rgba(36,57,104,0.04);
}

.brand-history, .leadership-profile, .unique-teaching-approach, .map-embed, .next-steps {
  background: #f9f7ee;
  border-radius: 12px;
  margin-top: 18px;
  padding: 20px 16px;
  box-shadow: 0 1px 7px 0 rgba(245,194,68,0.03);
}

.team-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 20px;
}
.team-bio {
  background: #fff;
  border-radius: 13px;
  padding: 16px 16px 12px 18px;
  box-shadow: 0 2px 8px 0 rgba(36,57,104,0.07);
  margin-bottom: 12px;
  flex: 1 1 220px;
}
@media (max-width: 700px) { .team-highlights { flex-direction: column; gap: 0; } .team-bio { width: 100%; } }

.instructor-profiles, .article-listings {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.instructor-card, .article-card {
  background: #fff;
  border-radius: 13px;
  padding: 20px 16px 16px 16px;
  box-shadow: 0 2px 13px 0 rgba(245,194,68,0.07);
  border: 1px solid #eee7d6;
  flex: 1 1 230px;
  margin-bottom: 20px;
  transition: box-shadow 0.17s, border 0.17s, transform 0.12s;
}
.instructor-card:hover, .article-card:hover {
  box-shadow: 0 8px 35px 0 rgba(245,194,68,0.13);
  border-color: #F5C244;
  transform: translateY(-2px) scale(1.01);
}

/* FORM ELEMENTS */
input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
  background: #fff;
  border: 1.5px solid #ccc;
  border-radius: 7px;
  padding: 11px 12px;
  margin-bottom: 16px;
  width: 100%;
  outline: none;
  transition: border-color 0.18s, box-shadow 0.2s;
}
input:focus, textarea:focus, select:focus { border-color: #F5C244; box-shadow: 0 2px 15px rgba(245,194,68,0.07); }

/* LIST & OL/UL */
ul, ol { margin-left: 24px; margin-bottom: 10px; }
ul li, ol li { margin-bottom: 7px; }

/* MISC: Categories, Filters */
.categories-filter { margin-bottom: 16px; font-size: 1.01rem; color: #6d6c66; }
.categories-filter span { background: #f5f4ee; color: #243968; font-weight: 600; border-radius: 5px; padding: 3px 10px; margin: 0 4px; }

/* MAP EMBED & CONTACT DETAILS */
.map-embed { margin-top: 15px; background: #f7f5ec; padding: 20px 12px; border-radius: 12px; }
.contact-details {
  background: #fff4e7;
  border-radius: 13px;
  padding: 15px 13px 7px 13px;
  margin-bottom: 16px;
  color: #243968;
}

/* Responsive CONTENT LAYOUTS */
@media (max-width: 768px) {
  .hero { padding: 36px 0; }
  .cta-section { padding: 30px 8px; }
  .course-overview .course-cards,
  .features .feature-grid,
  .team-highlights,
  .instructors-intro .instructor-profiles,
  .testimonial-slider,
  .testimonial-list,
  .content-grid,
  .article-listings {
    flex-direction: column;
    gap: 0;
  }
  .testimonial-card,
  .feature-item,
  .course-card,
  .instructor-card,
  .article-card {
    min-width: 0;
    width: 100%;
  }
  .text-image-section { flex-direction: column; align-items: flex-start; gap: 18px; }
  .section { padding: 19px 3px; margin-bottom: 35px; }
}

/* MICRO-INTERACTIONS & TRANSITIONS */
.card, .feature-item, .course-card, .testimonial-card, .instructor-card, .article-card, .cta-primary, .cookie-banner, .cookie-modal {
  transition: box-shadow 0.2s, border 0.18s, transform 0.13s, background 0.13s, color 0.13s, opacity 0.22s;
}

/* LUXURIOUS GOLD ACCENTS */
h2, .cta-primary, .footer-tagline, .feature-item h3, .feature-item img, .main-nav a.cta-primary, .testimonial-card strong {
  /* For gold accent: subtle text border / shadow or gold underline/deco, use border/gold stripe if needed */
}

/* --------- COOKIE CONSENT BANNER --------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #fffbea;
  color: #243968;
  font-family: 'Open Sans', Arial, sans-serif;
  border-top: 2px solid #F5C244;
  box-shadow: 0 -4px 24px rgba(36,57,104,0.07);
  z-index: 1099;
  padding: 22px 16px 22px 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  transition: transform 0.25s, opacity 0.23s;
}
.cookie-banner p {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  margin: 0;
  color: #243968;
  flex: 1 1 260px;
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.cookie-banner button, .cookie-banner .cookie-btn {
  background: #243968;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 9px 20px;
  font-size: 1rem;
  border: none;
  border-radius: 22px;
  box-shadow: 0 1px 6px 0 rgba(36,57,104,0.15);
  margin: 0 4px;
  cursor: pointer;
}
.cookie-banner button.accept { background: linear-gradient(90deg, #F5C244 0%, #ffeaaa 100%); color: #243968; border: 2px solid #F5C244; font-weight: 600; }
.cookie-banner button.reject { background: #e1d5be; color: #243968; font-weight: 700; }
.cookie-banner button.settings { background: #fff; color: #243968; border: 1.5px solid #F5C244; }
.cookie-banner button:hover, .cookie-banner button:focus { box-shadow: 0 2px 19px rgba(245,194,68,0.15); background: #f1e6be; color: #243968; }
.cookie-banner button.accept:hover, .cookie-banner button.accept:focus { background: #ffeaaa; color: #243968; }

/* Hide/show with animation */
.cookie-banner.hide { opacity: 0; pointer-events: none; transform: translateY(40px); }

/* COOKIE PREFERENCES MODAL */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(36,57,104,0.23);
  z-index: 1300;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s;
}
.cookie-modal-overlay.active { opacity: 1; pointer-events: all; }
.cookie-modal {
  background: #fff;
  width: 90vw;
  max-width: 430px;
  border-radius: 25px 25px 4px 4px;
  padding: 36px 30px 28px 30px;
  margin-bottom: 38px;
  box-shadow: 0 7px 64px 5px rgba(36,57,104,0.19);
  color: #243968;
  z-index: 1320;
}
.cookie-modal h2 {
  font-size: 1.5rem;
  margin-bottom: 19px;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #243968;
  font-weight: 700;
}
.cookie-modal .cookie-prefs {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 18px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff7e4;
  border-radius: 9px;
  padding: 13px 12px;
  font-size: 1.08rem;
  margin-bottom: 8px;
}
.cookie-modal .cookie-category.essential {
  background: #e7e2d8;
  color: #a7a1a0;
  font-style: italic;
}
.cookie-modal label { font-weight: 600; }
.cookie-modal input[type="checkbox"] {
  width: 24px; height: 24px; accent-color: #F5C244;
}
.cookie-modal .cookie-btns {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
}
.cookie-modal .cookie-btn {
  padding: 9px 16px;
  border-radius: 19px;
  font-size: 1rem;
  background: #243968;
  color: #fff;
  border: none;
  font-weight: 600;
}
.cookie-modal .cookie-btn.accept {
  background: linear-gradient(90deg, #F5C244 0%, #ffeaaa 100%);
  color: #243968; border: 2px solid #F5C244;
}
.cookie-modal .cookie-btn.reject {
  background: #e0dbc9; color: #243968; }
.cookie-modal .cookie-btn.settings {
  background: #fff; color: #243968; border: 1.5px solid #F5C244;
}
.cookie-modal .cookie-btn:focus, .cookie-modal .cookie-btn:hover { background: #f1e6be; color: #243968; }

@media (max-width: 600px) {
  .cookie-modal { padding: 22px 12px 16px 12px; }
}

/* TRANSITIONS/ANIMATIONS */
.mobile-menu, .mobile-menu.active {
  will-change: transform, opacity;
}
.cookie-banner, .cookie-modal, .cookie-banner button, .cookie-modal .cookie-btn {
  transition: background 0.17s, color 0.13s, box-shadow 0.18s, transform 0.13s, opacity 0.22s;
}

/* OTHER LAYOUTS (course, value lists) */
.levels-explained, .brief-course-descriptions, .who-is-it-for, .delivery-methods {
  background: #f8f6ea;
  border-radius: 10px;
  padding: 16px 14px 14px 18px;
  margin-top: 13px;
  margin-bottom: 15px;
}

.enroll-steps ol { padding-left: 25px; margin-bottom: 17px; }
.next-steps ul { padding-left: 22px; }

/* MISC FOR ACCESSIBILITY & UX */
:focus-visible { outline: 2px solid #F5C244; outline-offset: 2px; }

/* Hide visually */
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

/* ---- END OF CSS ---- */