.policy-page {
  min-height: 100vh;
  background: #1a1e33;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  display: flex;
  flex-direction: column;
  padding-top: 120px;
  overflow-x: hidden; /* ⬅️ защита от горизонтального скролла */
}

.policy-content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 60px;
  box-sizing: border-box; /* ⬅️ важный фикс для паддингов */
  word-wrap: break-word;  /* ⬅️ переносит длинные слова */
}

.policy-content h1 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 30px;
}

.policy-content h2 {
  font-size: 24px;
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 10px;
}

.policy-content p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.policy-content ul {
  padding-left: 20px;
  list-style: disc;
  margin-bottom: 20px;
}

.policy-content li {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 8px;
}

@media (max-width: 768px) {
  .policy-content h1 {
    font-size: 26px;
  }

  .policy-content h2 {
    font-size: 20px;
  }

  .policy-content p,
  .policy-content li {
    font-size: 14px;
    text-align: justify;
  }

  .policy-content {
    padding: 0 16px 40px; /* чуть меньше отступы на мобилках */
  }
}