:root {
  --bg: #020617;
  --text: #ffffff;
  --muted: #94a3b8;
  --card: rgba(255,255,255,0.06);
  --border: #1e293b;
  --accent: #22c55e;
}

body.light {
  --bg: #f8fafc;
  --text: #020617;
  --muted: #475569;
  --card: #ffffff;
  --border: #e5e7eb;
}

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

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
}

.container {
  max-width: 900px;
  margin: auto;
  padding: 120px 24px 80px;
}

h1 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 16px;
}

.subtitle {
  color: var(--muted);
  margin-bottom: 60px;
  font-size: 18px;
}

.policy-section {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px;
  margin-bottom: 28px;
}

.policy-section h2 {
  font-size: 20px;
  margin-bottom: 14px;
  font-weight: 700;
}

.policy-section p,
.policy-section li {
  color: var(--muted);
  font-size: 15px;
}

ul {
  padding-left: 20px;
  margin-top: 12px;
}

li {
  margin-bottom: 8px;
}

.note {
  margin-top: 12px;
  font-size: 14px;
  color: var(--accent);
  font-weight: 500;
}

footer {
  text-align: center;
  padding: 40px 24px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 600px) {
  h1 {
    font-size: 32px;
  }
}
