/* ===== LEGAL PAGES ===== */
.legal-page {
  padding-top: 120px;
  padding-bottom: 80px;
  min-height: 70vh;
}

.legal-header {
  text-align: center;
  margin-bottom: 60px;
}

.legal-header h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 12px;
  background: linear-gradient(135deg, var(--dark), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.legal-updated {
  font-size: 0.9rem;
  color: var(--gray-300);
  font-style: italic;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-section {
  margin-bottom: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--gray-200);
}

.legal-section:last-child {
  border-bottom: none;
}

.legal-section h2 {
  font-size: 1.35rem;
  color: var(--dark);
  margin-bottom: 16px;
  position: relative;
  padding-left: 20px;
}

.legal-section h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  width: 4px;
  height: 24px;
  background: linear-gradient(180deg, var(--orange), #FFB347);
  border-radius: 4px;
}

.legal-section h3 {
  font-size: 1.1rem;
  color: var(--dark);
  margin-top: 24px;
  margin-bottom: 12px;
}

.legal-section p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--gray-600);
  margin-bottom: 12px;
}

.legal-section ul {
  margin: 16px 0;
  padding-left: 0;
  list-style: none;
}

.legal-section ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray-600);
}

.legal-section ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background: var(--orange-light);
  border: 2px solid var(--orange);
  border-radius: 50%;
}

.legal-info-box {
  background: var(--gray-100);
  border-left: 4px solid var(--orange);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 24px 28px;
  margin: 16px 0;
}

.legal-info-box p {
  margin-bottom: 6px;
  font-size: 0.95rem;
}

.legal-info-box p:last-child {
  margin-bottom: 0;
}

.legal-back {
  text-align: center;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--gray-200);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .legal-page {
    padding-top: 100px;
    padding-bottom: 60px;
  }

  .legal-header {
    margin-bottom: 40px;
  }

  .legal-section {
    margin-bottom: 36px;
    padding-bottom: 28px;
  }

  .legal-section h2 {
    font-size: 1.2rem;
  }

  .legal-info-box {
    padding: 18px 20px;
  }
}
