/* ============================================================
   US Testing Center — Global Stylesheet
   ustestingcenter.com
   Palette: Royal Blue #002868 · Gold #C9A227 · White #FFFFFF
   Federal-grade, elite professional design
   ============================================================ */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue:         #002868;
  --blue-dark:    #001A44;
  --blue-light:   #003C8F;
  --blue-muted:   #0A3A7A;
  /* Legacy variable aliases for subpages */
  --purple:       #002868;
  --purple-dark:  #001A44;
  --purple-light: #003C8F;
  --text-light:   rgba(255,255,255,.6);
  --bg:           #002868;
  --gold-bg:      rgba(201,162,39,.08);
  --gold:         #C9A227;
  --gold-light:   #D4B44A;
  --gold-dim:     rgba(201,162,39,.15);
  --white:        #FFFFFF;
  --off-white:    #F4F6FA;
  --text:         #FFFFFF;
  --text-muted:   rgba(255,255,255,.75);
  --radius:       6px;
  --shadow:       0 2px 16px rgba(0,0,0,.12);
  --shadow-lg:    0 8px 40px rgba(0,0,0,.18);
  --transition:   .25s ease;
  --max-width:    1200px;
  --font:         'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* Public-sales readiness and accessibility */
.independence-notice {
  background: #f4f7fb;
  border-bottom: 1px solid #c8d2e3;
  color: #24344d;
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.5;
  padding: 0.65rem 1rem;
  text-align: center;
}

.visually-hidden {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

main p a:not(.btn), main li a:not(.btn), .footer-bottom a {
  text-decoration: underline;
  text-decoration-thickness: 0.1em;
  text-underline-offset: 0.16em;
}

.practice-notice p {
  color: #c7d2e4 !important;
}

.site-footer .footer-col p,
.site-footer .footer-bottom,
.site-footer .footer-bottom p,
.site-footer .footer-bottom a {
  color: #aeb9cc !important;
}

.privacy-consent {
  align-items: center;
  background: #07152c;
  border-top: 2px solid #d4b44a;
  bottom: 0;
  box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.28);
  color: #fff;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  left: 0;
  padding: 1rem max(1rem, calc((100vw - 1100px) / 2));
  position: fixed;
  right: 0;
  z-index: 10000;
}

.privacy-consent p {
  color: #fff;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

.privacy-consent a {
  color: #f3d675;
  text-decoration: underline;
}

.privacy-consent div {
  display: flex;
  flex: 0 0 auto;
  gap: 0.65rem;
}

.privacy-consent button {
  background: transparent;
  border: 1px solid #fff;
  border-radius: 5px;
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  min-height: 44px;
  padding: 0.65rem 0.9rem;
}

.privacy-consent .privacy-consent-accept {
  background: #d4b44a;
  border-color: #d4b44a;
  color: #09152a;
}

@media (max-width: 720px) {
  .privacy-consent {
    align-items: stretch;
    flex-direction: column;
  }

  .privacy-consent div,
  .privacy-consent button {
    width: 100%;
  }
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  color: var(--white);
  background: var(--blue);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* --- Typography --- */
h1, h2, h3, h4 { line-height: 1.2; font-weight: 700; color: var(--white); }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.1rem; }
p  { margin-bottom: 1rem; color: var(--text-muted); }

.section-title {
  text-align: center;
  margin-bottom: .5rem;
  color: var(--gold);
  letter-spacing: .5px;
  text-transform: uppercase;
  font-size: clamp(1.4rem, 3.5vw, 2rem);
}
.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 2.5rem;
  font-size: 1.05rem;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: .3px;
}
.btn-gold {
  background: var(--gold);
  color: var(--blue-dark);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(201,162,39,.4);
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--blue-dark);
}
.btn-white {
  background: var(--white);
  color: var(--blue);
}
.btn-white:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
}
.btn-sm { padding: 10px 22px; font-size: .9rem; }
.btn-lg { padding: 18px 40px; font-size: 1.1rem; }

/* ============================================================
   Credential Banner
   ============================================================ */
.credential-banner {
  background: var(--gold);
  color: var(--blue-dark);
  text-align: center;
  padding: 10px 16px;
  font-size: .82rem;
  font-weight: 500;
  line-height: 1.5;
}
.credential-banner strong { font-weight: 700; }
.credential-banner .cb-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px 20px; }
.credential-banner .cb-sep { opacity: .4; }

/* ============================================================
   Header & Navigation
   ============================================================ */
.site-header {
  background: var(--blue-dark);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,.25);
  border-bottom: 1px solid rgba(201,162,39,.15);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  height: 68px;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: .5px;
  text-decoration: none;
  flex-shrink: 0;
}
.site-logo svg { width: 36px; height: 36px; }

/* Desktop Nav */
.main-nav { display: flex; align-items: center; gap: 0; }
.main-nav > li { position: relative; }
.main-nav > li > a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 22px 16px;
  color: var(--white);
  font-size: .92rem;
  font-weight: 500;
  transition: color var(--transition);
  white-space: nowrap;
}
.main-nav > li > a:hover,
.main-nav > li:hover > a { color: var(--gold); }

.nav-arrow {
  width: 10px; height: 10px;
  transition: transform var(--transition);
}
.main-nav > li:hover .nav-arrow { transform: rotate(180deg); }

/* Mega-menu dropdown */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue-dark);
  border: 1px solid rgba(201,162,39,.2);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 240px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
  z-index: 900;
}
.main-nav > li:hover .mega-menu {
  opacity: 1;
  visibility: visible;
}
.mega-menu a {
  display: block;
  padding: 10px 24px;
  color: rgba(255,255,255,.85);
  font-size: .9rem;
  transition: background var(--transition), color var(--transition);
}
.mega-menu a:hover {
  background: rgba(201,162,39,.1);
  color: var(--gold);
}

/* Nav action buttons */
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-resume {
  background: var(--gold);
  color: var(--blue-dark);
  padding: 8px 20px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .9rem;
  transition: all var(--transition);
}
.nav-resume:hover { background: var(--gold-light); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1100;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ============================================================
   Hero Section
   ============================================================ */
.hero {
  background: linear-gradient(160deg, var(--blue-dark) 0%, var(--blue) 50%, var(--blue-light) 100%);
  color: var(--white);
  padding: 100px 20px 110px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 80%, rgba(201,162,39,.06) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(201,162,39,.04) 0%, transparent 50%);
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: .4;
}
.hero-content { position: relative; z-index: 1; max-width: 820px; margin: 0 auto; }
.hero h1 { margin-bottom: 20px; font-size: clamp(2.2rem, 5.5vw, 3.6rem); color: var(--white); }
.hero .gold-text { color: var(--gold); }
.hero p {
  font-size: clamp(1.05rem, 2.5vw, 1.25rem);
  color: rgba(255,255,255,.88);
  max-width: 640px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 56px;
  flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.hero-stat-number {
  display: block;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
}
.hero-stat-label {
  font-size: .85rem;
  color: rgba(255,255,255,.7);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: .5px;
  font-weight: 500;
}

/* ============================================================
   Sections
   ============================================================ */
.section {
  padding: 90px 20px;
  background: var(--blue);
}
.section-alt {
  background: var(--blue-dark);
}

/* Gold divider between sections */
.section + .section,
.section + .section-alt,
.section-alt + .section {
  border-top: 1px solid rgba(201,162,39,.15);
}

/* ============================================================
   Featured Tests Grid
   ============================================================ */
.tests-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 24px;
}

.test-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(201,162,39,.15);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  display: flex;
  flex-direction: column;
}
.test-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,.3);
  border-color: rgba(201,162,39,.35);
}
.test-card-icon {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-muted) 100%);
  color: var(--gold);
  padding: 28px 24px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(201,162,39,.12);
}
.test-card-icon svg {
  width: 48px;
  height: 48px;
}
.test-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.test-card-body h3 { margin-bottom: 8px; color: var(--gold); }
.test-card-body p {
  color: rgba(255,255,255,.7);
  font-size: .92rem;
  flex: 1;
}
.test-card-footer {
  padding: 0 24px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.test-price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
}

/* ============================================================
   Category Grid
   ============================================================ */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}
.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 36px 20px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(201,162,39,.12);
  text-align: center;
  transition: all var(--transition);
  text-decoration: none;
}
.category-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,.25);
  background: rgba(201,162,39,.06);
}
.category-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(201,162,39,.1);
  border: 1px solid rgba(201,162,39,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.category-icon svg {
  width: 26px;
  height: 26px;
}
.category-card h3 { font-size: 1.05rem; color: var(--white); }
.category-card p { font-size: .85rem; color: rgba(255,255,255,.6); margin: 0; }

/* ============================================================
   How It Works
   ============================================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 32px;
  counter-reset: step;
}
.step-card {
  text-align: center;
  padding: 24px;
  position: relative;
}
.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--blue-dark);
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 4px 16px rgba(201,162,39,.3);
}
.step-card h3 { color: var(--white); margin-bottom: 10px; }
.step-card p { color: rgba(255,255,255,.7); font-size: .92rem; margin: 0; }

/* ============================================================
   Features List
   ============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 24px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(201,162,39,.1);
  transition: border-color var(--transition);
}
.feature-item:hover {
  border-color: rgba(201,162,39,.3);
}
.feature-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: rgba(201,162,39,.1);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-icon svg {
  width: 22px;
  height: 22px;
}
.feature-item h4 { color: var(--gold); margin-bottom: 4px; }
.feature-item p { color: rgba(255,255,255,.65); font-size: .88rem; margin: 0; }

/* ============================================================
   Trust Section
   ============================================================ */
.trust-section {
  background: linear-gradient(160deg, var(--blue-dark) 0%, #001230 100%);
  color: var(--white);
  padding: 90px 20px;
  text-align: center;
  border-top: 1px solid rgba(201,162,39,.15);
  border-bottom: 1px solid rgba(201,162,39,.15);
}
.trust-section .section-title { color: var(--gold); }
.trust-section .section-subtitle { color: rgba(255,255,255,.7); }

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 32px;
  margin-top: 40px;
}
.trust-item { text-align: center; }
.trust-icon {
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.trust-icon svg {
  width: 40px;
  height: 40px;
  color: var(--gold);
}
.trust-number {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
}
.trust-label {
  font-size: .9rem;
  color: rgba(255,255,255,.7);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: .3px;
  font-weight: 500;
  font-size: .8rem;
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: #000E2A;
  color: var(--white);
  padding: 60px 20px 24px;
  border-top: 1px solid rgba(201,162,39,.15);
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 40px;
  max-width: var(--max-width);
  margin: 0 auto 48px;
}
.footer-col h4 {
  color: var(--gold);
  font-size: .9rem;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}
.footer-col a {
  display: block;
  padding: 4px 0;
  color: rgba(255,255,255,.6);
  font-size: .88rem;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(201,162,39,.1);
  padding-top: 24px;
  text-align: center;
  max-width: var(--max-width);
  margin: 0 auto;
}
.footer-bottom p {
  color: rgba(255,255,255,.45);
  font-size: .82rem;
}
.footer-bottom a { color: rgba(255,255,255,.45); }
.footer-bottom a:hover { color: var(--gold); }

/* ============================================================
   Responsive Breakpoints
   ============================================================ */
@media (max-width: 640px) {
  .hero { padding: 70px 16px 80px; }
  .hero-stats { gap: 28px; }
  .hero-stat-number { font-size: 1.6rem; }
  .section { padding: 64px 16px; }
  .tests-grid { grid-template-columns: 1fr; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: 1fr; gap: 20px; }
  .features-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .credential-banner .cb-row { flex-direction: column; gap: 4px; }
  .credential-banner .cb-sep { display: none; }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .nav-actions .nav-all-tests { display: none; }
  .hamburger { display: flex; }

  .main-nav.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--blue-dark);
    padding: 80px 24px 24px;
    z-index: 1050;
    overflow-y: auto;
    gap: 0;
  }
  .main-nav.mobile-open > li > a {
    padding: 16px 0;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(201,162,39,.08);
  }
  .main-nav.mobile-open .mega-menu {
    position: static;
    transform: none;
    background: rgba(255,255,255,.03);
    border: none;
    box-shadow: none;
    border-radius: var(--radius);
    padding: 4px 0;
    display: none;
    opacity: 1;
    visibility: visible;
  }
  .main-nav.mobile-open .mega-menu.mobile-sub-open { display: block; }
  .main-nav.mobile-open .mega-menu a {
    color: rgba(255,255,255,.7);
    padding: 10px 20px;
  }
  .main-nav.mobile-open .mega-menu a:hover {
    background: rgba(201,162,39,.08);
    color: var(--gold);
  }
}

@media (min-width: 769px) {
  .hamburger { display: none !important; }
}

@media (min-width: 1024px) {
  .tests-grid { grid-template-columns: repeat(4, 1fr); }
  .category-grid { grid-template-columns: repeat(4, 1fr); }
  .steps-grid { grid-template-columns: repeat(4, 1fr); }
  .features-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1200px) {
  .container { padding: 0 32px; }
}

/* ============================================================
   Utility classes
   ============================================================ */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-blue { color: var(--blue); }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}

/* ============================================================
   Subpage icon fallbacks (CSS-based, no emojis)
   When icon containers have no SVG child, show a gold dot
   ============================================================ */
.test-card-icon:empty::before,
.feat-mini-icon:empty::before,
.trust-icon:empty::before,
.category-icon:empty::before,
.feature-icon:empty::before {
  content: '';
  display: block;
  width: 12px;
  height: 12px;
  background: var(--gold);
  border-radius: 50%;
  opacity: .7;
}
.test-card-icon:empty {
  min-height: 80px;
}
.feat-mini-icon:empty::before {
  width: 8px;
  height: 8px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 4px;
}
.trust-icon:empty::before {
  width: 16px;
  height: 16px;
  margin: 0 auto;
}

/* ============================================================
   Subpage dark-theme overrides
   Subpages have inline <style> blocks designed for light theme.
   These overrides convert cards/sections to the dark blue palette.
   ============================================================ */

/* Method cards, scoring cards, info cards on subpages */
.method-card,
.scoring-card,
.info-card,
.topic-card,
.prep-card {
  background: rgba(255,255,255,.05) !important;
  border: 1px solid rgba(201,162,39,.12) !important;
  color: var(--white) !important;
  box-shadow: none !important;
}
.method-card h4,
.scoring-card h4,
.info-card h4,
.topic-card h4,
.prep-card h4 {
  color: var(--gold) !important;
}
.method-card p,
.scoring-card p,
.info-card p,
.topic-card p,
.prep-card p {
  color: rgba(255,255,255,.7) !important;
}
.scoring-number {
  color: var(--gold) !important;
}

/* About page sections */
.about-section {
  color: var(--white) !important;
}
.about-section:nth-child(even) {
  background: var(--blue-dark) !important;
}

/* Feature mini items on subpages */
.feat-mini {
  color: rgba(255,255,255,.8) !important;
}
.feat-mini-icon {
  color: var(--gold) !important;
}

/* Coming soon badge */
.coming-soon-badge {
  background: var(--gold) !important;
  color: var(--blue-dark) !important;
}

/* CTA sections in subpages */
.cta-section,
.final-cta {
  background: var(--blue-dark) !important;
  color: var(--white) !important;
}

/* Test hero sections - already use gradient vars, just ensure text is white */
.test-hero h1,
.test-hero h2,
.test-hero p {
  color: var(--white) !important;
}

/* Any remaining light text that might be dark-colored */
.test-detail-section h2,
.test-detail-section h3 {
  color: var(--gold) !important;
}
.test-detail-section p,
.test-detail-section li {
  color: rgba(255,255,255,.75) !important;
}

/* Accessibility overrides for legacy inline colors. */
.practice-notice p {
  color: #c7d4e8 !important;
}
.site-footer .footer-col p,
.site-footer .footer-bottom p,
.site-footer .footer-bottom a {
  color: #aeb9cc !important;
}
main p a:not(.btn),
main li a:not(.btn) {
  text-decoration: underline !important;
  text-underline-offset: .16em;
}
