:root {
  --bg: #f7fafc;
  --text: #1d2a35;
  --muted: #5a6b78;
  --line: #d6e3ee;
  --card: #ffffff;
  --primary: #00658a;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  background: radial-gradient(circle at 10% 8%, #d4ecff 0%, transparent 28%), var(--bg);
  color: var(--text);
  line-height: 1.62;
}

.policy-wrap {
  width: min(820px, calc(100% - 2rem));
  margin: 1.7rem auto 2.4rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.2rem 1.1rem;
}

.home-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 700;
}

h1,
h2 {
  font-family: "Sora", sans-serif;
  letter-spacing: -0.01em;
}

h1 {
  margin: 1rem 0 0.2rem;
  font-size: clamp(1.7rem, 2.3vw, 2.2rem);
}

h2 {
  margin-top: 1.3rem;
  margin-bottom: 0.45rem;
  font-size: 1.1rem;
}

p,
li {
  color: var(--text);
}

ul {
  margin-top: 0.35rem;
}

.updated {
  color: var(--muted);
  margin-top: 0;
}

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