.privacy-hero {
  background: radial-gradient(circle at top left, rgba(199, 154, 59, 0.16), transparent 55%),
              linear-gradient(145deg, #11111a, #04030a);
  padding-top: 4.5rem;
  padding-bottom: 3rem;
}

.privacy-hero .intro-text {
  max-width: 760px;
}

.privacy-toc {
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
  padding: 1.5rem 1.75rem;
  border-radius: var(--radius-lg);
  background: rgba(17, 17, 26, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.privacy-toc ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.75rem;
}

.privacy-toc a {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.privacy-toc a:hover {
  color: #fff !important;
}

.privacy-content {
  max-width: 860px;
}

.privacy-section {
  padding-top: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.privacy-section:last-of-type {
  border-bottom: none;
}

.privacy-section h2 {
  margin-bottom: 1.25rem;
}

.privacy-section h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.privacy-section ul {
  margin-left: 1.25rem;
  margin-bottom: 1rem;
}

.privacy-section ul li {
  position: relative;
  padding-left: 0.9rem;
  margin-bottom: 0.35rem;
}

.privacy-section ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.8rem;
  width: 6px;
  height: 1px;
  background: linear-gradient(90deg, #f3d16b, #c79a3b);
}

.privacy-cta {
  padding-top: 3.5rem;
  padding-bottom: 0;
}

.privacy-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.privacy-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

@media (max-width: 768px) {
  .privacy-hero {
    padding-top: 3.75rem;
    padding-bottom: 2.5rem;
  }

  .privacy-toc ul {
    flex-direction: column;
  }

  .privacy-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
