:root {
  color-scheme: light;
  --page-bg: #f3f6f8;
  --surface: #ffffff;
  --text: #182026;
  --muted: #69727d;
  --line: #dce4ea;
  --accent: #06c755;
  --navy: #001f54;
  --content-width: 960px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--text);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.8;
  background:
    linear-gradient(90deg, rgba(20, 41, 55, 0.06) 1px, transparent 1px),
    var(--page-bg);
  background-size: 24px 24px;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.site-header,
.site-footer {
  width: min(100%, var(--content-width));
  margin: 0 auto;
  padding: 24px 20px;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.site-header__logo {
  display: block;
  width: min(220px, 54vw);
}

.site-header__nav {
  display: flex;
  gap: 16px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.page {
  width: min(calc(100% - 32px), var(--content-width));
  margin: 0 auto 32px;
  padding: 48px min(6vw, 64px);
  background: var(--surface);
  box-shadow: 0 10px 30px rgba(12, 22, 32, 0.12);
}

.page__eyebrow {
  margin: 0 0 8px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  margin: 0 0 32px;
  color: var(--navy);
  font-size: 36px;
  line-height: 1.25;
}

h2 {
  margin: 36px 0 12px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--navy);
  font-size: 22px;
  line-height: 1.45;
}

p {
  margin: 0 0 16px;
}

ul {
  margin: 0 0 16px;
  padding-left: 1.4em;
}

.info-list {
  display: grid;
  margin: 0;
  border-top: 1px solid var(--line);
}

.info-list__row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.info-list dt {
  color: var(--muted);
  font-weight: 800;
}

.info-list dd {
  margin: 0;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 20px;
  padding: 0 24px;
  border-radius: 6px;
  color: #ffffff;
  font-weight: 800;
  text-decoration: none;
  background: var(--accent);
}

.site-footer {
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.site-footer__links {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-bottom: 12px;
}

@media (max-width: 720px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .page {
    padding: 36px 20px;
  }

  h1 {
    font-size: 30px;
  }

  .info-list__row {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

