/* Background section */
.legal-hero {
  min-height: 100vh;
  background: radial-gradient(circle at top left, #2a0f46, #050b1a 60%);
  padding: 120px 20px 80px;
  color: #e5e7eb;
  position: relative;
  overflow: hidden;
}

/* Soft glowing orbs */
.legal-hero::before,
.legal-hero::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #a855f7, transparent 70%);
  opacity: 0.25;
  filter: blur(80px);
}

.legal-hero::before {
  top: -80px;
  left: -80px;
}

.legal-hero::after {
  bottom: -80px;
  right: -80px;
}

/* Content wrapper */
.legal-container {
  max-width: 1300px;
  margin: auto;
  position: relative;
  z-index: 2;
}

/* Title */
.legal-container h1 {
  font-size: 3rem;
  text-align: center;
  background: linear-gradient(90deg, #a855f7, #6366f1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}

/* Subtitle */
.subtitle {
  text-align: center;
  color: #94a3b8;
  margin-bottom: 50px;
}

/* Card */
.legal-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

/* Section headings */
.legal-card h2 {
  color: #c7d2fe;
  font-size: 1.3rem;
  margin-top: 30px;
}

/* Text */
.legal-card p {
  color: #cbd5f5;
  line-height: 1.7;
  margin-top: 8px;
}

/* Mobile */
@media (max-width: 768px) {
  .legal-container h1 {
    font-size: 2.2rem;
  }

  .legal-card {
    padding: 25px;
  }
}
