:root {
  --color-brand-blue: #0070b8;
  --color-brand-dark: #2c2c71;
  --color-white: #ffffff;
  --color-ink: #1d2939;
  --color-muted: #505559;
  --color-border: #e2e2e2;
  --font-family-sans: Arial, "Open Sans", system-ui, -apple-system, sans-serif;
  --font-family-headline: "Anton", "Open Sans", sans-serif;
}

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

html,
body {
  width: 100%;
  min-height: 100dvh;
  font-family: var(--font-family-sans);
  color: var(--color-ink);
  line-height: 1.5;
  background-color: #f4f6f8;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

:focus-visible {
  outline: 3px solid var(--color-brand-blue);
  outline-offset: 3px;
  border-radius: 2px;
}

a {
  color: var(--color-brand-blue);
}

a:hover {
  text-decoration: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.header {
  width: 100%;
  height: 85px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-border);
}

.logo-tdf {
  width: 110px;
  height: auto;
}

.doc {
  max-width: 760px;
  margin-inline: auto;
  padding: 32px 20px 64px;
}

.doc-eyebrow {
  font-family: var(--font-family-headline);
  font-weight: normal;
  letter-spacing: 0.6px;
  color: var(--color-brand-blue);
  text-transform: uppercase;
  font-size: 15px;
  margin-bottom: 6px;
}

h1 {
  font-family: var(--font-family-headline);
  font-weight: normal;
  letter-spacing: 0.5px;
  color: var(--color-brand-blue);
  font-size: clamp(23px, 6vw, 32px);
  line-height: 1.15;
  margin-bottom: 24px;
}

h2 {
  font-family: var(--font-family-headline);
  font-weight: normal;
  letter-spacing: 0.4px;
  color: var(--color-brand-blue);
  font-size: clamp(20px, 4vw, 26px);
  line-height: 1.2;
  margin-top: 40px;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--color-border);
}

h3 {
  font-weight: 700;
  color: var(--color-ink);
  font-size: 17px;
  margin-top: 24px;
  margin-bottom: 8px;
}

p {
  margin-bottom: 12px;
}

ul {
  margin: 0 0 12px;
  padding-left: 22px;
}

li {
  margin-bottom: 6px;
}

.lead {
  font-size: 17px;
}

.muted {
  color: var(--color-muted);
}

address {
  font-style: normal;
  margin-top: 4px;
  padding-left: 22px;
  color: var(--color-ink);
}
