/* ===== Privacy Page ===== */
.privacy-page {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  padding: calc(var(--nav-height) + 40px) 24px 80px;
}

.privacy-hero {
  text-align: center;
  margin-bottom: 40px;
}

.privacy-hero .section-tag {
  margin-bottom: 12px;
}

.privacy-title {
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 10px;
}

.privacy-updated {
  font-size: 13px;
  color: var(--text-dim);
}

.privacy-content {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.privacy-section {
  padding: 22px 24px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
}

.privacy-section h2 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}

.privacy-section p,
.privacy-section li {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
}

.privacy-section p + p,
.privacy-section ul {
  margin-top: 12px;
}

.privacy-section ul {
  padding-left: 1.2rem;
}

.privacy-section li + li {
  margin-top: 8px;
}

.privacy-section a {
  color: var(--purple-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.privacy-section a:hover {
  color: var(--pink);
}

@media (max-width: 640px) {
  .privacy-page {
    padding-bottom: 48px;
  }

  .privacy-section {
    padding: 18px 16px;
  }
}
