/* Legal Pages Styles */
.legal-page {
  min-height: calc(100vh - 200px);
  background-color: #f6f2ea;
  padding: 120px 0 80px;
  color: #2d2d2d;
}

.legal-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.legal-page h1 {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #2d2d2d;
  margin-bottom: 2rem;
  text-align: left;
  line-height: 1.3;
}

.legal-section {
  margin-bottom: 0.7rem;
}

.legal-section h2 {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #2d2d2d;
  margin: 8px 0 2px 0;
  line-height: 1.4;
}

.legal-section h3 {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #2d2d2d;
  margin: 8px 0 2px 0;
  line-height: 1.4;
}

.legal-section p {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #2d2d2d;
  margin: 2px 0;
  font-weight: 400;
}

.legal-section p strong {
  font-weight: 600;
  color: #1a1a1a;
}

.legal-section ul {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #2d2d2d;
  margin: 2px 0;
  padding-left: 1.5rem;
  font-weight: 400;
}

.legal-section li {
  margin-bottom: 0.2rem;
}

.legal-section li strong {
  font-weight: 600;
  color: #1a1a1a;
}

/* Responsive */
@media (max-width: 768px) {
  .legal-page {
    padding: 100px 0 60px;
  }

  .legal-container {
    padding: 0 var(--spacing-sm);
  }

  .legal-page h1 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }

  .legal-section {
    margin-bottom: 0.6rem;
  }

  .legal-section h2 {
    font-size: 1.3rem;
    margin: 6px 0 2px 0;
  }

  .legal-section h3 {
    font-size: 1.1rem;
    margin: 6px 0 2px 0;
  }

  .legal-section p,
  .legal-section ul {
    font-size: 0.9rem;
    line-height: 1.6;
  }
}


