/* ===== Legal Pages Shared Styles ===== */

/* Scope isolation: prevent homepage section styles from polluting legal pages */
.legal-page .legal-content section {
  background-color: transparent !important;
}

.legal-page body {
  font-size: 16px;
  line-height: 1.8;
  color: #1C1917;
  background-color: #FCFCFC;
}

/* Legal page header */
.legal-header {
  background: linear-gradient(135deg, #1C1917 0%, #292524 100%);
  padding: 120px 0 64px;
  text-align: center;
}

.legal-header .container {
  position: relative;
}

.legal-header h1 {
  font-size: 44px;
  font-weight: 900;
  color: #FFFFFF;
  letter-spacing: -1px;
  margin-bottom: 12px;
}

.legal-header .last-updated {
  font-size: 15px;
  color: #A8A29E;
}

.legal-header .company-name {
  font-size: 16px;
  color: #EA580C;
  font-weight: 600;
  margin-top: 8px;
}

/* Legal content area */
.legal-content {
  padding: 60px 0 60px;
  background-color: #FFFFFF;
}

.legal-content .container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Table of Contents */
.toc {
  background-color: #FFF7ED;
  border-radius: 12px;
  padding: 28px 32px;
  margin-bottom: 48px;
  border: 1px solid #FED7AA;
}

.toc h2 {
  font-size: 20px;
  font-weight: 700;
  color: #1C1917;
  margin-bottom: 16px;
}

.toc ol {
  list-style: decimal;
  padding-left: 20px;
}

.toc ol li {
  margin-bottom: 6px;
  font-size: 14px;
  line-height: 1.6;
}

.toc ol li a {
  color: #EA580C;
  font-weight: 500;
  transition: color 0.2s ease;
}

.toc ol li a:hover {
  color: #C2410C;
  text-decoration: underline;
}

/* Section headings */
.legal-content section {
  margin-bottom: 48px;
}

.legal-content section h2 {
  font-size: 24px;
  font-weight: 700;
  color: #1C1917;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid #E7E5E4;
}

.legal-content section p {
  font-size: 16px;
  color: #44403C;
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-content section ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal-content section ul li {
  font-size: 16px;
  color: #44403C;
  line-height: 1.8;
  margin-bottom: 6px;
}

.legal-content section strong {
  color: #1C1917;
}

.legal-content .back-link {
  display: inline-block;
  margin-top: 32px;
  color: #EA580C;
  font-weight: 600;
  font-size: 15px;
}

.legal-content .back-link:hover {
  color: #C2410C;
  text-decoration: underline;
}

/* Legal footer */
.legal-footer {
  background-color: #1C1917;
  padding: 40px 0;
  text-align: center;
  color: #78716C;
  font-size: 14px;
}

.legal-footer a {
  color: #EA580C;
  font-weight: 500;
}

.legal-footer a:hover {
  color: #FFFFFF;
}

.legal-footer .footer-links {
  margin-top: 8px;
  display: flex;
  justify-content: center;
  gap: 24px;
}

.legal-footer .footer-links a {
  color: #D6D3D1;
  font-size: 14px;
  font-weight: 500;
}

.legal-footer .footer-links a:hover {
  color: #FFFFFF;
}

/* Responsive */
@media (max-width: 768px) {
  .legal-header h1 {
    font-size: 30px;
  }

  .legal-content {
    padding: 40px 0 40px;
  }

  .toc {
    padding: 20px 24px;
  }
}
