:root {
  color-scheme: light;
  --bg: #f7f8fa;
  --paper: #ffffff;
  --text: #1a1a2e;
  --muted: #6b7280;
  --line: #e5e7eb;
  --accent: #1e3a5f;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
}

.page {
  width: min(100%, 800px);
  margin: 0 auto;
  padding: 48px 20px 64px;
}

.policy-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 52px 56px;
}

.policy-header {
  padding-bottom: 28px;
  margin-bottom: 32px;
  border-bottom: 2px solid var(--accent);
}

.last-updated {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.875rem;
}

h1 {
  margin: 0;
  font-family: "Lora", Georgia, serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--accent);
}

h2 {
  margin: 0 0 12px;
  font-family: system-ui, sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

section {
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

section + section {
  margin-top: 4px;
}

p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.8;
  color: #374151;
}

p + p {
  margin-top: 10px;
}

@media (max-width: 640px) {
  .page {
    padding: 24px 14px 40px;
  }

  .policy-card {
    border-radius: 6px;
    padding: 28px 22px;
  }

  p {
    font-size: 0.9rem;
    line-height: 1.75;
  }
}
