/* style/promo.css */
.page-promo {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #FFF6D6; /* Main text color for dark body background */
  background-color: #0A0A0A; /* Body background from shared.css */
}

.page-promo__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-promo__section {
  padding: 60px 0;
  text-align: center;
  background-color: #0A0A0A; /* Ensure consistency with body background */
}

.page-promo__dark-section {
  background: #111111;
  color: #FFF6D6;
}

.page-promo__section-title {
  font-size: clamp(2em, 5vw, 2.8em);
  font-weight: bold;
  margin-bottom: 20px;
  color: #F2C14E;
  line-height: 1.2;
}