/* Legal pages */
.legal-page {
  max-width: 880px;
  margin: 64px auto;
  padding: 56px 48px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
  text-align: left;
}

.legal-page .donate-kicker {
  text-align: center;
  margin-bottom: 12px;
  color: #9b7b3f;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.legal-page h1 {
  text-align: center;
  margin-bottom: 40px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.4;
}

.legal-page h2 {
  margin-top: 36px;
  margin-bottom: 14px;
  padding-left: 14px;
  border-left: 4px solid #c9a85f;
  font-size: 20px;
  line-height: 1.6;
}

.legal-page p {
  margin: 0 0 18px;
  color: #333;
  font-size: 16px;
  line-height: 2;
}

.legal-page .legal-date {
  margin-top: 44px;
  text-align: right;
  color: #777;
  font-size: 14px;
}

.legal-page .hero-btns {
  margin-top: 48px;
  text-align: center;
}

@media (max-width: 768px) {
  .legal-page {
    margin: 32px 16px;
    padding: 36px 22px;
    border-radius: 18px;
  }

  .legal-page h1 {
    margin-bottom: 30px;
  }

  .legal-page h2 {
    margin-top: 30px;
    font-size: 18px;
  }

  .legal-page p {
    font-size: 15px;
    line-height: 1.9;
  }

  .legal-page .legal-date {
    text-align: left;
  }
}