/* Legal Pages Styles */

.legal-page {
  padding: 120px 0 80px;
  min-height: calc(100vh - 200px);
}

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

.legal-header h1 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.legal-meta {
  font-size: 14px;
  color: var(--text-muted);
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  background: var(--bg-card);
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 48px;
}

.legal-section {
  margin-bottom: 40px;
  padding: 0 !important;
}

.legal-content section,
.legal-page .legal-section {
  padding: 0 !important;
}

.legal-section:last-child {
  margin-bottom: 0;
}

.legal-section h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.legal-section p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 12px;
}

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

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

.legal-section li {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  padding: 8px 0 8px 28px;
  position: relative;
}

.legal-section li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
}

.legal-section a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.3s ease;
}

.legal-section a:hover {
  color: var(--accent-hover);
  text-decoration: underline;
}

.legal-section strong {
  color: var(--text-primary);
  font-weight: 600;
}

.legal-footer {
  text-align: center;
  margin-top: 48px;
}

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

  .legal-header h1 {
    font-size: 32px;
  }

  .legal-content {
    padding: 32px 24px;
  }

  .legal-section h2 {
    font-size: 20px;
  }
}
