.legal-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 64px 48px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.legal-section h2 {
  font-size: 22px;
  letter-spacing: -0.3px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--ink-lt);
  margin-bottom: 16px;
}

.legal-section p {
  font-size: 15px;
  font-weight: 300;
  color: var(--ink-mid);
  line-height: 1.7;
}

.legal-section p + p,
.legal-section ul + p,
.legal-section p + ul {
  margin-top: 12px;
}

.legal-section ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}

.legal-section ul li {
  font-size: 15px;
  font-weight: 300;
  color: var(--ink-mid);
  line-height: 1.7;
  padding-left: 18px;
  position: relative;
}

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

.legal-section a {
  color: var(--coral);
  text-decoration: none;
}

.legal-section a:hover {
  text-decoration: underline;
}

.legal-contact {
  border-top: 1px solid var(--sand);
  padding-top: 40px;
}

.legal-contact h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.3px;
  color: var(--ink);
  margin-bottom: 8px;
  border: none;
  padding: 0;
}

.legal-contact p {
  font-size: 15px;
  font-weight: 300;
  color: var(--ink-mid);
  line-height: 1.7;
}

.legal-contact a {
  color: var(--coral);
  text-decoration: none;
}

.legal-contact a:hover {
  text-decoration: underline;
}

@media (max-width: 640px) {
  .legal-content { padding: 40px 20px; gap: 36px; }
}
