/* style/promo.css */

/* Base styles for the promo page, ensuring text is readable on dark background */
.page-promo {
  font-family: 'Arial', sans-serif;
  color: #FFF6D6; /* Text Main */
  background-color: #0A0A0A; /* Background */
  line-height: 1.6;
  font-size: 1rem;
}

/* Sections */
.page-promo__section {
  padding: 60px 20px;
  margin-bottom: 0;
}

.page-promo__dark-section {
  background-color: #111111; /* Card BG, used for dark sections */
}

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

.page-promo__container--flex {
  display: flex;
  align-items: center;
  gap: 40px;
}

/* Headings */
.page-promo__main-title {
  font-size: clamp(2rem, 5vw, 3.5rem); /* Responsive H1 font size */
  font-weight: 700;
  color: #FFD36B; /* Glow color for emphasis */
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-promo__section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #FFD36B; /* Glow color for emphasis */
  text-align: center;
  margin-bottom: 30px;
  line-height: 1.3;
}

.page-promo__description {
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-promo__description-text {
  font-size: 1rem;
  text-align: center;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}