/* Стиль для встроенного заголовка "Инструкция по покупке" */
h2, .instruction-title {
  color: #ff8000 !important;
  text-align: center;
  font-size: 32px !important;
  font-weight: 900 !important;
  text-shadow:
    0 0 6px #ff8000,
    0 0 12px #ff9933;
  animation: glowOrange 2.5s ease-in-out infinite alternate;
  margin-bottom: 40px !important;
}

/* Шаги */
.instruction-step {
  margin-bottom: 20px;
}

.step-title {
  color: #fff;
  font-weight: 900;
  font-size: 18px;
  margin-bottom: 6px;
  text-shadow: 0 0 3px rgba(0,0,0,0.3);
}

.step-text {
  color: #fff;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  text-shadow: 0 0 2px rgba(0,0,0,0.2);
  margin: 0;
}

/* Анимация свечения для заголовка */
@keyframes glowOrange {
  0% {
    text-shadow:
      0 0 6px #ff8000,
      0 0 12px #ff9933;
  }
  100% {
    text-shadow:
      0 0 12px #ff9933,
      0 0 20px #ff6600;
  }
}
