/* ========================================
   ASP Associates — Legal Page Styles
   legal.css — Privacy Policy, Terms of Service
   ======================================== */

/* ---------- Legal Content Column ---------- */
.legal-content {
  max-width: 720px;
  margin: 0 auto;
}

/* ---------- Headings ---------- */
.legal-content h2 {
  font-size: var(--text-2xl);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--text-primary);
  margin-top: var(--space-12);
  margin-bottom: var(--space-4);
}

.legal-content h2:first-child {
  margin-top: 0;
}

/* ---------- Paragraphs ---------- */
.legal-content p {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-4);
}

/* ---------- Lists ---------- */
.legal-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: var(--space-4);
}

.legal-content ul li {
  position: relative;
  padding-left: var(--space-5);
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-2);
}

.legal-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

/* ---------- Inline elements ---------- */
.legal-content strong {
  font-weight: 700;
  color: var(--text-primary);
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .legal-content h2 {
    font-size: var(--text-xl);
    margin-top: var(--space-10);
  }
}
