.legal-page {
  min-height: 100vh;
  background: #f8faf8;
}

.legal-header {
  position: relative;
  top: auto;
}

.legal-title {
  min-height: 285px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding: 62px 24px;
  background:
    radial-gradient(circle at 82% 22%, rgba(12, 177, 158, 0.20), transparent 28%),
    linear-gradient(126deg, #06172e, #092c52 60%, #075046);
  color: white;
  text-align: center;
}

.legal-title h1 {
  margin: 0;
  font-size: clamp(42px, 6vw, 70px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.legal-body {
  width: min(100% - 48px, 1040px);
  margin: 72px auto 90px;
  padding: clamp(32px, 5vw, 66px);
  border: 1px solid var(--border);
  border-radius: 24px;
  background: white;
  box-shadow: 0 22px 65px rgba(8, 42, 71, 0.08);
}

.legal-body h2 {
  margin: 48px 0 18px;
  padding-top: 44px;
  border-top: 1px solid var(--border);
  color: var(--navy);
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.25;
  letter-spacing: -0.03em;
}

.legal-body h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.legal-body p {
  margin: 0 0 24px;
  color: #4e6070;
  font-size: 15px;
  line-height: 1.85;
}

.legal-body p:last-child {
  margin-bottom: 0;
}

.legal-body a {
  color: #087f77;
  font-weight: 760;
  text-decoration: underline;
  text-decoration-color: rgba(8, 127, 119, 0.3);
  text-underline-offset: 3px;
}

.contact-body {
  max-width: 940px;
  min-height: 220px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(234, 247, 247, 0.96), rgba(238, 248, 243, 0.98));
  text-align: center;
}

.contact-body p {
  margin: 0;
  color: var(--navy);
  font-size: clamp(21px, 3vw, 34px);
}

.contact-body strong,
.contact-body a {
  display: block;
}

.contact-body a {
  margin-top: 12px;
  color: var(--teal);
  font-size: clamp(20px, 3vw, 32px);
}

@media (max-width: 820px) {
  .legal-header nav {
    display: none;
  }
}
