/* ===== SECTION ===== */
.privacy-section {
  padding: 80px 20px;

  /* 🔥 dark gradient bg */
  background: linear-gradient(
    135deg,
    rgba(0,255,204,0.04),
    rgba(56,189,248,0.04)
  );
}


.legal-section {
  padding: 80px 20px;
  background: linear-gradient(
    135deg,
    rgba(0,255,204,0.04),
    rgba(56,189,248,0.04)
  );
}

/* 🔥 Scoped headings */
.legal-section h1 {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 12px;

  background: linear-gradient(90deg, #c084fc, #38bdf8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.legal-section h2 {
  color: #e5e7eb;
  margin-bottom: 10px;
}

.legal-section h3 {
  color: #cbd5f5;
  margin-top: 15px;
}

/* 🔥 Scoped text */
.legal-section p {
  color: #9ca3af;
  line-height: 1.7;
}

.card:hover {
  border-color: rgba(0,255,204,0.3);
}


/* Container */
.container {
  max-width: 1100px;
  margin: auto;
}

/* ===== HEADINGS ===== */
h1 {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 12px;

  background: linear-gradient(90deg, #c084fc, #38bdf8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

h2 {
  color: #e5e7eb;
  margin-bottom: 10px;
}

h3 {
  color: #cbd5f5;
  margin-top: 15px;
}

/* ===== PARAGRAPH ===== */
p {
  color: #9ca3af;
  line-height: 1.7;
}

/* ===== CARD ===== */
.card {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  padding: 25px;
  margin-top: 25px;

  border: 1px solid rgba(255,255,255,0.08);

  backdrop-filter: blur(10px);

  box-shadow: 0 0 25px rgba(0,255,204,0.08);

  transition: all 0.3s ease;
}

/* Hover */
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 40px rgba(0,255,204,0.15);
}

/* Highlight */
.highlight {
  color: #00ffc3;
  font-weight: 600;
}

/* ===== LIST ===== */
ul {
  padding-left: 20px;
}

li {
  margin-bottom: 8px;
  color: #9ca3af;
}

/* spacing */
.card + .card {
  margin-top: 20px;
}

/* ===== CARD TITLE BAR ===== */
.card h2 {
  position: relative;
  padding-bottom: 8px;
}

.card h2::after {
  content: "";
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #00ffcc, #38bdf8);
  position: absolute;
  bottom: 0;
  left: 0;
  border-radius: 10px;
}

/* ===== BUTTON ===== */
.btn {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 10px;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn.outline {
  border: 1px solid rgba(0,255,204,0.3);
  color: #00ffc3;
}

.btn.outline:hover {
  background: rgba(0,255,204,0.1);
  transform: translateY(-2px);
}

/* ===== LINKS ===== */
.card a {
  color: #00ffc3;
  font-weight: 500;
  text-decoration: none;
}

.card a:hover {
  text-decoration: underline;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  .card {
    padding: 20px;
  }
}