/* =========================================
   LEGAL PAGES STYLES (Terms, Privacy)
========================================= */

.legal-container {
  max-width: 800px;
  margin: 0 auto;
  padding: calc(70px + var(--gap-section-sm)) 20px var(--gap-section);
  color: var(--text-color);
  font-family: var(--font-primary);
}

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

.legal-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.legal-header p {
  color: var(--text-muted);
  font-size: 1rem;
}

.legal-content {
  line-height: 1.8;
  font-size: 1rem;
  color: #333;
}

.legal-content h2 {
  font-size: 1.3rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 40px;
  margin-bottom: 15px;
  color: #000;
}

.legal-content p {
  margin-bottom: 20px;
}

.legal-content ul,
.legal-content ol {
  margin-bottom: 20px;
  padding-left: 20px;
}

.legal-content ul {
  list-style-type: disc;
}

.legal-content ol {
  list-style-type: decimal;
}

.legal-content ul li,
.legal-content ol li {
  margin-bottom: 10px;
}

.legal-content a {
  color: #000;
  text-decoration: underline;
  font-weight: 500;
}

.legal-content a:hover {
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .legal-header h1 {
    font-size: 1.8rem;
  }

  .legal-content h2 {
    font-size: 1.1rem;
  }
}