/* ===== Terms & Conditions page ===== */

/* заголовок */
.terms-h1{
  padding-top: clamp(18px, 3vw, 24px);
  margin: 0;
  text-align: center;
  color: #2d6a4f;
  font-weight: 800;
  font-size: clamp(22px, 3.2vw, 32px);
}

/* секция с абзацами */
.terms-section{
  padding-block: clamp(40px, 7vw, 72px);
  display: grid;
  gap: 12px;
  background:
    radial-gradient(120% 80% at 50% 120%, #e9f4ee 0%, #f8fcfa 70%);
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(0,0,0,.06);
  margin-block: 12px;
}

/* сами абзацы */
.terms-section p{
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 14px;
  padding: 12px 14px;
  box-shadow: 0 8px 20px rgba(0,0,0,.06);
  line-height: 1.55;
}

/* ссылки */
.terms-section a{
  color: #2d6a4f;
  font-weight: 800;
  text-decoration: none;
}
.terms-section a:hover{ text-decoration: underline; }

/* дата и пояснение по юрисдикции */
.terms-updated{
  text-align: right;
  background: #f3faf6;
  border: 1px solid rgba(0,0,0,.06);
}
.terms-note{
  background: #fffef5;
  border: 1px solid rgba(0,0,0,.06);
}

/* запасной ограничитель ширины */
.pp-wrap{ width: min(1100px, 92%); margin-inline: auto; }
