.policy-page {
  overflow: clip;
  background: var(--paper);
}

.policy-hero {
  position: relative;
  background:
    radial-gradient(circle at top left, rgba(255, 241, 155, 0.45), transparent 28%),
    radial-gradient(circle at top right, rgba(248, 132, 63, 0.18), transparent 24%),
    var(--paper);
  padding: 92px 0 36px;
}

.policy-hero__content {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.policy-hero__content h1 {
  margin: 0 0 16px;
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  line-height: 0.95;
  font-weight: 700;
}

.policy-hero__content p {
  margin: 0 auto;
  max-width: 760px;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  line-height: 1.65;
}

.policy-content-section {
  background: linear-gradient(to bottom, var(--paper) 0%, #f7f4ff 100%);
  padding: 24px 0 96px;
}

.policy-card {
  max-width: 860px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.82);
  border: 2px solid rgba(61, 69, 170, 0.12);
  border-radius: 30px;
  box-shadow: 0 16px 36px rgba(18, 18, 18, 0.08);
  padding: 34px 30px;
  position: relative;
  overflow: hidden;
}

.policy-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 8px;
  background: linear-gradient(
    90deg,
    var(--blue) 0%,
    var(--orange) 35%,
    var(--red) 65%,
    var(--yellow) 100%
  );
}

.policy-updated {
  margin: 0 0 24px;
  font-size: 0.95rem;
  opacity: 0.75;
}

.policy-card h2 {
  margin: 28px 0 10px;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  line-height: 1.15;
}

.policy-card h2:first-of-type {
  margin-top: 0;
}

.policy-card p {
  margin: 0;
  line-height: 1.75;
  font-size: 1.02rem;
}

.policy-card a {
  color: var(--blue);
  font-weight: 600;
}

.policy-card a:hover {
  text-decoration: underline;
}

@media (max-width: 640px) {
  .policy-hero {
    padding: 72px 0 28px;
  }

  .policy-card {
    padding: 24px 18px;
    border-radius: 24px;
  }
}