/* ===== LEGAL STYLESHEET for privacy.html & terms-of-service.html ===== */

/* Reset for legal pages */
.legal-page *, .legal-page *::before, .legal-page *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.legal-page {
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: #1C1C24;
  background-color: #FCFCFD;
}

/* ===== SCOPE ISOLATION - prevent homepage section styles from polluting legal pages ===== */
.legal-page .legal-content section {
  background-color: transparent !important;
  color: #1C1C24 !important;
  padding: 0 !important;
}

/* ===== LEGAL HEADER (div/header, never section) ===== */
.legal-header {
  background: linear-gradient(135deg, #0F1119 0%, #1C1F2E 100%);
  padding: 80px 28px 60px;
  text-align: center;
}
.legal-header h1 {
  font-size: 42px;
  font-weight: 800;
  color: #F0F1F5;
  margin-bottom: 12px;
  letter-spacing: -1px;
}
.legal-header p {
  font-size: 15px;
  color: #83889A;
}

/* ===== LEGAL CONTENT ===== */
.legal-content {
  padding: 60px 28px 60px;
  background-color: #FCFCFD;
}
.legal-content .container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== TABLE OF CONTENTS ===== */
.toc {
  background-color: #F3F3F8;
  border: 1px solid #E5E5EE;
  border-radius: 12px;
  padding: 28px 30px;
  margin-bottom: 40px;
}
.toc h2 {
  font-size: 17px;
  font-weight: 700;
  color: #1C1C24;
  margin-bottom: 14px;
}
.toc ol {
  list-style: decimal inside;
  columns: 2;
  column-gap: 32px;
}
.toc ol li {
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 1.5;
}
.toc ol li a {
  color: #E0534A;
  text-decoration: none;
  transition: color 0.2s ease;
}
.toc ol li a:hover,
.toc ol li a:focus {
  color: #C9443C;
  text-decoration: underline;
}

@media (max-width: 600px) {
  .toc ol { columns: 1; }
}

/* ===== LEGAL SECTIONS ===== */
.legal-content h2 {
  font-size: 26px;
  font-weight: 800;
  color: #1C1C24;
  margin-bottom: 16px;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #E5E5EE;
  letter-spacing: -0.5px;
}
.legal-content h2:first-of-type {
  margin-top: 0;
  border-top: none;
}
.legal-content p {
  font-size: 16px;
  color: #4A4A58;
  line-height: 1.8;
  margin-bottom: 18px;
}
.legal-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 18px;
}
.legal-content ul li {
  font-size: 16px;
  color: #4A4A58;
  line-height: 1.75;
  margin-bottom: 8px;
}

/* ===== LEGAL FOOTER ===== */
.legal-footer {
  background-color: #0F1119;
  padding: 32px 28px;
  text-align: center;
}
.legal-footer a {
  color: #E0534A;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}
.legal-footer a:hover { color: #F0F1F5; }
.legal-footer .footer-address {
  font-size: 13px;
  color: #83889A;
  margin-top: 10px;
}

/* ===== BACK TO TOP LINK ===== */
.back-to-top {
  display: inline-block;
  margin-top: 30px;
  color: #E0534A;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}
.back-to-top:hover { text-decoration: underline; }
