:root {
  --primary: #1778ff;
  --primary-dark: #1c3bc2;
  --accent: #00de33;
  --accent-dark: #06a42a;
  --text: #0f172a;
  --muted: #64748b;
  --text-muted: #94a3b8;
  --bg: #f5faff;
  --card: #ffffff;
  --border: #e2e8f0;
}

* {
  box-sizing: border-box;
}

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

.shell {
  max-width: 640px;
  margin: 0 auto;
  padding: 1.75rem 1.25rem 2.5rem;
}

.headerBlock {
  text-align: center;
  margin-bottom: 1.25rem;
}

.logoWrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
  background: var(--bg);
}

.headerLogo {
  display: block;
  width: auto;
  height: auto;
  max-width: min(100%, 320px);
  max-height: 80px;
  object-fit: contain;
  flex-shrink: 0;
}

.screenTitle {
  margin: 0 0 0.5rem;
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}

.screenSubtitle {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--muted);
}

.card {
  background: var(--card);
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 1.5rem 1.25rem;
  box-shadow:
    0 4px 24px rgba(15, 23, 42, 0.06),
    0 0 1px rgba(15, 23, 42, 0.04);
}

.policy section {
  margin-bottom: 1.25rem;
}

.policy section:last-child {
  margin-bottom: 0;
}

.policy h2 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
}

.policy p {
  margin: 0 0 0.65rem;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--muted);
}

.policy p:last-child {
  margin-bottom: 0;
}

.policy ul {
  margin: 0.35rem 0 0.65rem;
  padding-left: 1.25rem;
}

.policy li {
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.policy a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

.policy a:hover {
  text-decoration: underline;
}

.policy strong {
  color: var(--text);
  font-weight: 600;
}

.policyDivider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 1.5rem 0;
}

.policyLocaleTitle {
  margin: 0 0 1.25rem;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text);
  text-align: center;
}
