body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Arial, sans-serif; /* современный ровный шрифт */
  color: gold; /* золотистые буквы */
  background: #0a0a0a; /* тёмный фон для контраста */
  text-align: center;
  line-height: 1.6;
}

h1 {
  font-size: 2.5em;
  margin-top: 40px;
  text-shadow: 2px 2px 6px black; /* лёгкая тень для контраста */
}

.policy-text {
  max-width: 900px;
  margin: 30px auto;
  padding: 20px;
  background: rgba(0,0,0,0.5);
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(255,215,0,0.6);
  text-align: left;
}

.policy-text p {
  margin-bottom: 15px;
  font-size: 1.1em;
}

/* Кнопка заказа */
.order-button {
  display: inline-block;
  padding: 15px 30px;
  font-size: 1.4em;
  font-weight: bold;
  color: black;
  background: gold;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.7);
  transition: all 0.3s ease;
}

.order-button:hover {
  background: #ffd700;
  color: white;
  box-shadow: 0 0 25px rgba(255, 215, 0, 1);
}
