/* ============================================================
   PRIVACY PAGE — privacy.css
   ============================================================ */
.privacy-hero {
  padding: 140px 0 60px;
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border);
}
.privacy-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}
.privacy-hero p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 600px;
  margin-bottom: 0.5rem;
}
.privacy-updated {
  font-size: 0.75rem !important;
  color: var(--text-muted) !important;
  margin-top: 1rem !important;
}
.privacy-body {
  padding: var(--section-pad) 0;
  background: var(--bg-primary);
}
.privacy-content {
  max-width: 720px;
}
.privacy-section {
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}
.privacy-section:last-child {
  border-bottom: none;
}
.privacy-section h2 {
  font-size: 1.4rem;
  color: var(--text-primary);
  margin-bottom: 1rem;
}
.privacy-section p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 0.85rem;
}
.privacy-section p:last-child { margin-bottom: 0; }
.privacy-section a { color: var(--accent); transition: opacity var(--transition); }
.privacy-section a:hover { opacity: 0.75; }
@media (max-width: 600px) {
  .privacy-hero { padding: 120px 0 50px; }
}
