/* ═══════════════════════════════════════════════════
   Legal Pages (Terms of Service, Privacy Policy)
   ═══════════════════════════════════════════════════ */

.legal-page {
  padding: 120px 0 80px;
  min-height: 80vh;
}

.legal-header {
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--grey-200);
}

.legal-header h1 {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 8px;
}

.legal-date {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: var(--grey-400);
}

.legal-content {
  max-width: 760px;
}

.legal-content p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--grey-600);
  margin-bottom: 16px;
}

.legal-content h2 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.3px;
  margin-top: 40px;
  margin-bottom: 12px;
  color: var(--grey-900);
}

.legal-content h3 {
  font-size: 16px;
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 8px;
  color: var(--grey-700);
}

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

.legal-content ul li {
  position: relative;
  padding-left: 20px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--grey-600);
  margin-bottom: 6px;
}

.legal-content ul li::before {
  content: '\2022';
  position: absolute;
  left: 0;
  color: var(--grey-400);
}

.legal-content a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}
.legal-content a:hover {
  text-decoration: underline;
}

.contact-box {
  background: var(--grey-50);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-sm);
  padding: 20px;
  margin: 16px 0;
  font-size: 15px;
  line-height: 1.8;
  color: var(--grey-700);
}

.contact-box strong {
  color: var(--grey-900);
}

.contact-label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--accent);
  margin-bottom: 4px;
}

@media (max-width: 768px) {
  .legal-page {
    padding: 100px 0 60px;
  }
  .legal-header h1 {
    font-size: 28px;
  }
  .legal-content h2 {
    font-size: 18px;
    margin-top: 32px;
  }
}
