:root {
  color-scheme: light;
  --forest: #14352a;
  --forest-soft: #e9f0ec;
  --gold: #a66a12;
  --cream: #faf8f1;
  --paper: #ffffff;
  --ink: #18211d;
  --muted: #5e6963;
  --line: #dce2de;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: var(--cream);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.container {
  margin: 0 auto;
  max-width: 760px;
  padding: 64px 24px;
}

header {
  margin-bottom: 42px;
}

.eyebrow {
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  margin-bottom: 6px;
  text-transform: uppercase;
}

h1 {
  color: var(--forest);
  font-size: clamp(34px, 7vw, 52px);
  letter-spacing: -.035em;
  line-height: 1.05;
}

.subtitle {
  color: var(--muted);
  margin-top: 10px;
}

h2 {
  color: var(--forest);
  font-size: 24px;
  letter-spacing: -.015em;
  line-height: 1.25;
  margin: 42px 0 12px;
}

h3 {
  color: var(--ink);
  font-size: 18px;
  margin: 28px 0 8px;
}

p, ul {
  margin-bottom: 17px;
}

ul {
  padding-left: 24px;
}

li {
  margin-bottom: 8px;
}

a {
  color: var(--gold);
  text-underline-offset: 3px;
}

.breadcrumb,
.effective-date {
  color: var(--muted);
  font-size: 14px;
}

.breadcrumb {
  margin-bottom: 12px;
}

.effective-date {
  border-bottom: 1px solid var(--line);
  margin-bottom: 34px;
  padding-bottom: 24px;
}

.support-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 14px 40px rgb(20 53 42 / 8%);
  margin-bottom: 20px;
  padding: 26px;
}

.support-card h2 {
  margin-top: 0;
}

.primary-link {
  background: var(--forest);
  border-radius: 999px;
  color: white;
  display: inline-block;
  font-weight: 650;
  padding: 11px 18px;
  text-decoration: none;
}

nav {
  display: grid;
  gap: 12px;
  margin-bottom: 54px;
}

nav a {
  align-items: center;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--forest);
  display: flex;
  font-weight: 650;
  justify-content: space-between;
  padding: 18px 20px;
  text-decoration: none;
}

nav a:hover,
nav a:focus-visible {
  border-color: var(--gold);
}

footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  margin-top: 52px;
  padding-top: 28px;
}

footer .contact {
  margin-top: -10px;
}

@media (max-width: 520px) {
  .container {
    padding: 40px 20px;
  }

  body {
    font-size: 16px;
  }

  .support-card {
    padding: 21px;
  }
}
