body {
  font-family: 'Istok Web', Arial, sans-serif;
  color: #fff;
  padding: 0 clamp(24px, 6vw, 64px);
}

main {
  padding: clamp(120px, 18vh, 160px) 0 clamp(72px, 12vh, 120px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.terms-card {
  width: var(--container-width);
  max-width: var(--container-width);
  margin: 0 auto;
  padding: clamp(28px, 4vw, 56px) clamp(24px, 6vw, 64px);
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.terms-card h1 {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  text-align: center;
  margin: 0 0 clamp(24px, 4vw, 36px);
}

.terms-lead {
  max-width: 760px;
  margin: 0 auto clamp(24px, 4vw, 40px);
  font-size: 1rem;
  line-height: 1.7;
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
}

.terms-section {
  max-width: 760px;
  margin: clamp(24px, 4vw, 40px) auto;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.72;
}

.terms-section h2 {
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 1.18rem;
  color: rgba(255, 255, 255, 0.94);
}

.terms-section ul {
  margin: 0;
  padding-left: 22px;
}

.terms-section li {
  margin-bottom: 12px;
}

.terms-section a {
  color: #8fd18a;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.terms-section a:hover,
.terms-section a:focus-visible {
  color: #b8f0ac;
}

@media (max-width: 720px) {
  body {
    padding: 0 18px;
  }

  .terms-card {
    padding: 28px 22px;
  }

  .terms-lead {
    font-size: 0.95rem;
  }
}
