:root {
  --bg: #ffffff;
  --text: #1f2937;
  --muted: #6b7280;
  --border: #e5e7eb;
  --accent: #2563eb;
  --card: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

.policy-page {
  min-height: 100vh;
  padding: 48px 20px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.policy-card {
  width: 100%;
  max-width: 860px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px 32px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
}

.policy-header {
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.policy-label {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

h1 {
  margin: 0 0 10px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.2;
  color: #111827;
}

.policy-meta {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

section {
  margin-top: 28px;
}

h2 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.3;
  color: #111827;
}

p {
  margin: 0;
  color: var(--text);
  max-width: 72ch;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

@media (max-width: 640px) {
  .policy-page {
    padding: 20px 12px;
  }

  .policy-card {
    padding: 24px 18px;
    border-radius: 16px;
  }

  body {
    font-size: 15px;
  }
}