:root {
    --grey-900: #333333;
    --grey-600: #666666;
    --blue-700: #094FA3;
    --blue-800: #073D7C;
    --blue-600: #0B5CC2;
    --red-700: #CC003D;
    --white: #FFFFFF;
    --bg-alt: #F5F7FA;
    --bg-zebra: #FAFBFD;
    --line-strong: #E3E8EF;
    --line: #E9EDF3;
    --radius: 8px;
  }

body {
  --header-topbar-bg: #24303B;
  --header-topbar-text: #F8FAFC;
  --header-topbar-subtext: #CBD5E1;
  --header-brand-strong: #FFFFFF;
  --header-icon-color: #94A3B8;
  --header-logo-bg: rgba(255, 255, 255, 0.12);
  --header-contact-border: rgba(148, 163, 184, 0.3);
  --header-secondary-bg: #24303B;
  --header-secondary-text: #E2E8F0;
  --header-secondary-hover: #FFFFFF;
  --header-nav-bg: #FFFFFF;
  --header-nav-text: #1F2933;
  --header-nav-hover-border: #3B82F6;
  --header-nav-active-bg: rgba(59, 130, 246, 0.12);
  --header-nav-active-border: #3B82F6;
  --header-nav-search-hover: rgba(31, 41, 51, 0.08);
  --header-mega-bg: #FFFFFF;
  --header-mega-color: #1F2933;
  --header-mega-border: #3B82F6;
  --header-mega-link: #3B82F6;
  --header-mega-link-hover: #1D4ED8;
}

body, body * {
    font-family: "Work Sans", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 12px 0;
  }

  h1 {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: var(--grey-900);
  }

  h2 {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.25;
    color: var(--grey-900);
    margin-top: 24px;
  }

  h3 {
    font-size: 26px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--blue-700);
    margin-top: 20px;
  }

  h4 {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.35;
    color: var(--grey-900);
    margin-top: 16px;
  }

  h5 {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--grey-900);
    margin-top: 14px;
  }

  h6 {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--grey-900);
    margin-top: 12px;
  }

  p {
    margin: 0 0 16px 0;
    line-height: 1.65;
  }

  a {
    color: var(--blue-700);
    font-weight: 500;
    text-decoration: none;
  }

  a:hover {
    color: var(--blue-600);
    text-decoration: underline;
    text-underline-offset: 3px;
  }

  a:visited {
    color: var(--blue-800);
  }