:root {
  color-scheme: light dark;
  --bg: #f7f9fb;
  --text: #17202a;
  --muted: #516070;
  --panel: #ffffff;
  --line: #d8e1ea;
  --primary: #176b87;
  --primary-dark: #0f4f63;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  background: var(--bg);
  color: var(--text);
}

.page {
  width: min(960px, calc(100% - 32px));
  margin: 0 auto;
  padding: 48px 0;
}

.hero,
.content {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
}

.hero {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.content {
  margin-top: 20px;
}

.policy {
  max-width: 780px;
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.05;
}

h2 {
  margin: 24px 0 8px;
  font-size: 1.3rem;
}

p {
  margin: 0 0 12px;
  color: var(--muted);
}

.lead {
  max-width: 680px;
  font-size: 1.15rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 6px;
  background: var(--primary);
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
}

.button.secondary {
  background: transparent;
  color: var(--primary-dark);
  border: 1px solid var(--line);
}

a {
  color: var(--primary-dark);
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #101417;
    --text: #eef4f6;
    --muted: #bac8cf;
    --panel: #171d21;
    --line: #2c3840;
    --primary: #62b6cb;
    --primary-dark: #9bd8e7;
  }
}
