/* Additional styles for legal pages */
.legal-page {
  padding-top: 100px;
  padding-bottom: 80px;
  background: var(--cmb-white);
  min-height: 100vh;
}
.legal-page .container {
  max-width: 820px;
}

/* Back button at top-left */
.back-top {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--cmb-text-light);
  font-weight: 500;
  font-size: 0.9rem;
  transition: var(--cmb-transition);
  margin-bottom: 20px;
  padding: 8px 16px;
  border-radius: 8px;
  background: var(--cmb-cream);
  border: 1px solid #e8edf0;
}
.back-top:hover {
  color: var(--cmb-primary);
  background: #e4f0eb;
  gap: 12px;
}
.back-top i {
  font-size: 0.85rem;
}

.legal-page h1 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--cmb-dark);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.legal-page .last-updated {
  color: var(--cmb-text-light);
  font-size: 0.9rem;
  margin-bottom: 40px;
  border-bottom: 1px solid #e8edf0;
  padding-bottom: 20px;
}
.legal-page h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--cmb-dark);
  margin-top: 36px;
  margin-bottom: 12px;
}
.legal-page h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--cmb-dark);
  margin-top: 24px;
  margin-bottom: 8px;
}
.legal-page p {
  color: var(--cmb-text-light);
  line-height: 1.8;
  margin-bottom: 12px;
}
.legal-page ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 16px;
}
.legal-page ul li {
  color: var(--cmb-text-light);
  line-height: 1.8;
  padding-left: 24px;
  position: relative;
  margin-bottom: 4px;
}
.legal-page ul li::before {
  content: "•";
  position: absolute;
  left: 4px;
  color: var(--cmb-cyan);
  font-weight: 700;
}

@media (max-width: 768px) {
  .legal-page {
    padding-top: 80px;
    padding-bottom: 56px;
  }
  .legal-page h1 {
    font-size: 1.6rem;
  }
  .legal-page h2 {
    font-size: 1.1rem;
  }
  .back-top {
    font-size: 0.8rem;
    padding: 6px 12px;
  }
}
