/* ============================================
   LEGAL PAGES - PRIVACY & TERMS
   ============================================ */

.legal-main {
  padding: 16px;
  padding-bottom: 40px;
  background-color: var(--bg-cream);
  min-height: 100vh;
  max-width: 800px;
  margin: 0 auto;
}

/* Hero Section */
.legal-hero {
  text-align: center;
  padding: 40px 20px;
  margin-bottom: 32px;
}

.legal-hero h1 {
  font-size: 32px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 12px;
  letter-spacing: -1px;
}

.legal-subtitle {
  font-size: 18px;
  color: var(--text-medium);
  margin-bottom: 8px;
}

.legal-date {
  font-size: 14px;
  color: var(--text-light);
  font-style: italic;
}

/* Container */
.legal-container {
  background-color: #fff;
  border-radius: 16px;
  padding: 32px 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

/* Sections */
.legal-section {
  margin-bottom: 40px;
}

.legal-section:last-child {
  margin-bottom: 0;
}

.legal-section h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-purple);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--light-purple);
}

.legal-section h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  margin-top: 24px;
  margin-bottom: 12px;
}

.legal-section p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.legal-section ul {
  margin: 16px 0;
  padding-left: 24px;
}

.legal-section li {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.legal-section strong {
  font-weight: 700;
  color: var(--text-dark);
}

.legal-section a {
  color: var(--primary-purple);
  text-decoration: underline;
  font-weight: 600;
}

.legal-section a:hover {
  color: var(--dark-purple);
}

/* Footer Section */
.legal-footer {
  background: linear-gradient(135deg, #f9f5ff 0%, #ffffff 100%);
  border: 2px solid var(--light-purple);
  border-radius: 12px;
  padding: 24px;
  margin-top: 40px;
}

.legal-footer p {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0;
  text-align: center;
}

/* Responsive */
@media (min-width: 768px) {
  .legal-main {
    padding: 32px;
    padding-bottom: 60px;
  }

  .legal-hero {
    padding: 60px 20px;
  }

  .legal-hero h1 {
    font-size: 42px;
  }

  .legal-container {
    padding: 48px 40px;
  }

  .legal-section h2 {
    font-size: 28px;
  }
}