:root {
  --ink: #1e1e1e;
  --muted: #5f6670;
  --blue: #005cb2;
  --blue-dark: #004789;
  --grey: #f2f2f2;
  --line: #d9dee6;
  --orange: #e56e0b;
  --white: #fff;
  --black: #000;
  --max: 1200px;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: "Host Grotesk", Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--white);
  font-size: 16px;
  line-height: 1.5;
}
a {
  color: inherit;
}
img,
svg {
  max-width: 100%;
}
.skip-link {
  position: absolute;
  left: 16px;
  top: -50px;
  background: #fff;
  padding: 8px 12px;
  z-index: 99;
}
.skip-link:focus {
  top: 12px;
}
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}
.site-header {
  height: 80px;
  background: #fff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 50;
}
.navbar {
  max-width: var(--max);
  height: 80px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  gap: 2px;
  text-decoration: none;
  margin-right: 36px;
  flex-shrink: 0;
}
.brand span {
  width: 25px;
  height: 25px;
  background: #000;
  color: #fff;
  border: 1px solid #fff;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 18px;
  line-height: 1;
}
.brand span:last-child {
  background: #fff;
  color: #000;
  border-color: #000;
}
.nav-menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 20px;
}
.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-right {
  gap: 18px;
}
.nav-link,
.icon-btn {
  background: none;
  border: 0;
  text-decoration: none;
  font: inherit;
  color: #000;
  padding: 10px 0;
  display: inline-flex;
  gap: 7px;
  align-items: center;
  cursor: pointer;
}
.nav-link:hover,
.nav-link.active,
.icon-btn:hover {
  text-decoration: underline;
}
.chevron {
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-top: -5px;
}
.nav-item {
  position: relative;
}
.dropdown {
  display: none;
  position: absolute;
  top: 56px;
  background: #0b0b0b;
  color: #fff;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.25);
  z-index: 100;
}
.has-dropdown.open > .dropdown {
  display: flex;
}
.mega-menu {
  left: 0;
  min-width: 520px;
  padding: 28px;
  gap: 32px;
}
.resources-menu {
  left: auto;
  right: -200px;
}
.mega-col {
  display: flex;
  flex-direction: column;
  gap: 13px;
  min-width: 220px;
}
.mega-col a {
  color: #fff;
  text-decoration: none;
}
.mega-col a:hover {
  text-decoration: underline;
}
.mega-col small {
  display: block;
  color: #d8d8d8;
  margin-top: 4px;
}
.mega-heading {
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.04em;
}
.active-link {
  font-weight: 800;
}
.language-menu {
  right: 0;
  min-width: 180px;
  padding: 18px;
  flex-direction: column;
  gap: 11px;
}
.language-menu a {
  color: #fff;
  text-decoration: none;
}
.hamburger {
  display: none;
  background: none;
  border: 0;
  width: 34px;
  height: 28px;
  flex-direction: column;
  justify-content: space-between;
  padding: 0;
}
.hamburger span {
  height: 4px;
  background: #000;
  border-radius: 4px;
}
.blog-hero {
  background: #f7f7f7;
  padding: 34px 0 42px;
}
.breadcrumb {
  font-size: 14px;
  margin-bottom: 34px;
}
.breadcrumb a {
  color: #005cb2;
}
.breadcrumb span {
  padding: 0 10px;
  color: #005cb2;
}
.hero-title {
  background: #fff;
  padding-top: 16px;
  padding-bottom: 16px;
}
.hero-title h1 {
  margin: 0;
  font-size: 48px;
  line-height: 1.05;
  color: #333;
}
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 42px;
  padding-bottom: 42px;
}
.category-card {
  min-height: 420px;
  padding: 54px 24px 32px;
  border: 2px solid #f0f0f0;
  text-align: center;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  transition: 0.2s;
}
.category-card.shaded {
  background: #f2f2f2;
}
.category-card:hover {
  border-color: #004789;
  transform: translateY(-2px);
}
.category-icon {
  width: 118px;
  height: 118px;
  border: 3px solid var(--orange);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--orange);
  font-weight: 800;
  font-size: 42px;
  margin-bottom: 28px;
}
.category-card h2 {
  font-size: 30px;
  line-height: 1.05;
  margin: 0 0 18px;
}
.category-card p {
  margin: 0 0 24px;
  color: #454545;
}
.category-card strong {
  margin-top: auto;
  color: #005cb2;
}
.mobile-accordions {
  display: none;
}
.cta-section {
  background: #deebf2;
  padding: 54px 0;
}
.cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.cta-card h2 {
  margin: 0 0 10px;
  font-size: 34px;
}
.cta-card p {
  margin: 0;
  color: #444;
}
.primary-btn {
  background: #005cb2;
  color: #fff;
  text-decoration: none;
  padding: 14px 24px;
  border-radius: 6px;
  font-weight: 800;
  white-space: nowrap;
}
.primary-btn:hover {
  background: #004789;
  text-decoration: underline;
}
.site-footer {
  background: #111;
  color: #fff;
  padding: 46px 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 30px;
}
.footer-grid div {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-grid a {
  color: #fff;
  text-decoration: none;
}
.footer-grid a:hover {
  text-decoration: underline;
}
.footer-grid p {
  margin: 0;
  color: #ddd;
}
@media (max-width: 900px) {
  .hamburger {
    display: flex;
  }
  .nav-menu {
    position: absolute;
    left: 0;
    right: 0;
    top: 80px;
    background: #fff;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px 24px;
    border-bottom: 1px solid #ddd;
  }
  .nav-menu.open {
    display: flex;
  }
  .nav-left,
  .nav-right {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }
  .dropdown {
    position: static;
    box-shadow: none;
    margin: 8px 0;
  }
  .mega-menu,
  .language-menu {
    min-width: 0;
    width: 100%;
    padding: 18px;
  }
  .resources-menu {
    right: auto;
  }
  .category-grid {
    display: none;
  }
  .mobile-accordions {
    display: block;
  }
  .accordion-item {
    border-bottom: 1px solid #ddd;
    background: #f2f2f2;
  }
  .accordion-toggle {
    width: 100%;
    padding: 18px 24px;
    background: transparent;
    border: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #005cb2;
    font-size: 18px;
    font-weight: 800;
    text-align: left;
  }
  .accordion-panel {
    max-height: 0;
    overflow: hidden;
    padding: 0 24px;
    transition: max-height 0.25s ease;
  }
  .accordion-item.open .accordion-panel {
    max-height: 220px;
    padding-bottom: 22px;
  }
  .accordion-panel a {
    color: #005cb2;
    font-weight: 800;
  }
  .hero-title h1 {
    font-size: 36px;
  }
  .cta-card {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
