/* ── Privacy policy page ──────────────────────────────────── */
.policy-hero {
  padding: 80px 0 48px;
  text-align: center;
}

.policy-hero h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.policy-meta {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.policy-meta p {
  margin: 0;
}

.policy-body {
  padding: 0 0 100px;
}

.policy-content {
  max-width: 800px;
  margin: 0 auto;
}

.policy-content h2 {
  font-size: 1.45rem;
  font-weight: 700;
  margin: 52px 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.policy-content h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 28px 0 10px;
  color: rgba(255, 255, 255, 0.85);
}

.policy-content p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 14px;
}

.policy-content ul {
  color: var(--text-muted);
  line-height: 1.8;
  margin: 0 0 16px 22px;
}

.policy-content ul li {
  margin-bottom: 8px;
}

.policy-content a {
  color: #818cf8;
  text-decoration: none;
  transition: color 0.2s;
}

.policy-content a:hover {
  color: #a5b4fc;
  text-decoration: underline;
}

.policy-content strong {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

.policy-content em {
  font-style: italic;
  color: rgba(255, 255, 255, 0.75);
}

/* ── Data table ─────────────────────────────────────────────── */
.policy-table-wrapper {
  overflow-x: auto;
  margin: 20px 0 24px;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.policy-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.policy-table th {
  text-align: left;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid var(--border);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  white-space: nowrap;
}

.policy-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
  vertical-align: top;
  line-height: 1.65;
}

.policy-table tbody tr:last-child td {
  border-bottom: none;
}

.policy-table tbody tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.02);
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 680px) {
  .policy-hero h1 {
    font-size: 2.1rem;
  }

  .policy-meta {
    flex-direction: column;
    gap: 4px;
  }

  .policy-content h2 {
    font-size: 1.25rem;
    margin-top: 40px;
  }

  .policy-table th,
  .policy-table td {
    padding: 10px 12px;
    font-size: 0.8rem;
  }
}
