/* ═══════════════════════════════════════
   privacy.css — Privacy Policy Page Styles
   ═══════════════════════════════════════ */

/* ── Content ── */
.content {
  max-width: 800px;
  margin: 0 auto;
  padding: 120px 24px 60px;
}

.page-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  margin-bottom: 8px;
}

.page-title .gradient {
  background: linear-gradient(135deg, #60a5fa, #a78bfa, #f472b6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.last-updated {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 48px;
}

.section {
  margin-bottom: 40px;
}

.section h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #e5e7eb;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section h2 svg {
  width: 22px;
  height: 22px;
  color: #60a5fa;
  flex-shrink: 0;
}

.section p, .section li {
  font-size: 15px;
  color: #9ca3af;
  line-height: 1.8;
}

.section ul {
  list-style: none;
  padding: 0;
  margin-top: 12px;
}

.section ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
}

.section ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background: #3b82f6;
  border-radius: 50%;
}

/* ── Info Card ── */
.info-card {
  background: linear-gradient(145deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 24px;
  margin-top: 16px;
}

.info-card p {
  margin-bottom: 8px;
}

.info-card p:last-child {
  margin-bottom: 0;
}

.info-card strong {
  color: #e5e7eb;
}

/* ── Highlight Box ── */
.highlight-box {
  background: rgba(59,130,246,0.08);
  border: 1px solid rgba(59,130,246,0.2);
  border-radius: 12px;
  padding: 20px 24px;
  margin-top: 16px;
}

.highlight-box p {
  color: #93c5fd;
}

.highlight-box a {
  color: #60a5fa;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

.highlight-box a:hover {
  color: #93c5fd;
  text-decoration: underline;
}

/* ── Divider ── */
.divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.06);
  margin: 48px 0;
}

/* ── Data Table ── */
.data-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.07);
}

.data-table th,
.data-table td {
  padding: 14px 18px;
  text-align: left;
  font-size: 14px;
}

.data-table th {
  background: rgba(59,130,246,0.1);
  color: #93c5fd;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.data-table td {
  background: rgba(255,255,255,0.02);
  color: #9ca3af;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.data-table tr:hover td {
  background: rgba(255,255,255,0.04);
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .content { padding: 100px 20px 40px; }
  .data-table th,
  .data-table td { padding: 10px 12px; font-size: 13px; }
}
