.page-promo {
  color: #333333;
  padding-top: var(--header-offset, 120px);
}

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

.page-promo__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  color: #ffffff;
  text-align: center;
  padding: 80px 0;
  background-color: #1A1A2E; /* Fallback if image fails to load */
}

.page-promo__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.6;
}

.page-promo__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

.page-promo__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-promo__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  line-height: 1.6;
  color: #f0f0f0;
}

.page-promo__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-promo__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  white-space: nowrap;
}

.page-promo__button--primary {
  background-color: #FFD700;
  color: #1A1A2E;
  border: 2px solid #FFD700;
}

.page-promo__button--primary:hover {
  background-color: #e5c100;
  transform: translateY(-2px);
}

.page-promo__button--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-promo__button--secondary:hover {
  background-color: #FFD700;
  color: #1A1A2E;
  transform: translateY(-2px);
}

.page-promo__section-title {
  font-size: 2.5em;
  color: #1A1A2E;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-promo__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-promo__intro-section, .page-promo__how-to-claim, .page-promo__fair-play, .page-promo__why-choose, .page-promo__faq-section, .page-promo__cta-section {
  padding: 60px 0;
}

.page-promo__text-content {
  font-size: 1.1em;
  line-height: 1.8;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 30px auto;
}

.page-promo__promotions-grid {
  background-color: #f8f9fa;
  padding: 80px 0;
}

.page-promo__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-promo__promo-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promo__promo-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.page-promo__card-image {
  width: 100%;
  height: 225px; /* Fixed height for consistency */
  object-fit: cover;
}

.page-promo__card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-promo__card-title {
  font-size: 1.6em;
  color: #1A1A2E;
  margin-bottom: 15px;
  line-height: 1.3;
}

.page-promo__card-description {
  font-size: 0.95em;
  color: #555555;
  line-height: 1.7;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promo__button--card {
  width: fit-content;
  align-self: flex-start;
  padding: 10px 20px;
  font-size: 0.9em;
  border-radius: 6px;
  background-color: #1A1A2E;
  color: #FFD700;
  border: 1px solid #1A1A2E;
}

.page-promo__button--card:hover {
  background-color: #FFD700;
  color: #1A1A2E;
  border-color: #FFD700;
  transform: translateY(-2px);
}

.page-promo__how-to-claim {
  background-color: #e6e9ed;
}

.page-promo__claim-steps {
  list-style: none;
  padding: 0;
  margin: 50px auto 0 auto;
  max-width: 900px;
}

.page-promo__step-item {
  background-color: #ffffff;
  padding: 30px;
  margin-bottom: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-promo__step-title {
  font-size: 1.8em;
  color: #1A1A2E;
  margin-bottom: 10px;
}

.page-promo__step-description {
  font-size: 1em;
  color: #555555;
  line-height: 1.7;
  margin-bottom: 20px;
}

.page-promo__button--step {
  padding: 10px 25px;
  font-size: 0.95em;
  border-radius: 6px;
  background-color: #1A1A2E;
  color: #FFD700;
  border: 1px solid #1A1A2E;
}

.page-promo__button--step:hover {
  background-color: #FFD700;
  color: #1A1A2E;
  border-color: #FFD700;
}

.page-promo__fair-play {
  background-color: #ffffff;
}

.page-promo__fair-play-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.page-promo__why-choose {
  background-color: #f8f9fa;
}

.page-promo__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-promo__feature-item {
  text-align: center;
  background-color: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promo__feature-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.page-promo__feature-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 50%; /* Example for icon style */
  background-color: #FFD700;
  padding: 15px;
}

.page-promo__feature-title {
  font-size: 1.5em;
  color: #1A1A2E;
  margin-bottom: 10px;
}

.page-promo__feature-description {
  font-size: 0.95em;
  color: #555555;
  line-height: 1.7;
}

.page-promo__faq-section {
  background-color: #e6e9ed;
}

.page-promo__faq-items {
  max-width: 900px;
  margin: 50px auto 0 auto;
}

.page-promo__faq-item {
  background-color: #ffffff;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  padding: 25px;
}

.page-promo__faq-question {
  font-size: 1.3em;
  color: #1A1A2E;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-promo__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-promo__faq-question.active::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-promo__faq-answer {
  font-size: 1em;
  color: #555555;
  line-height: 1.7;
  display: none;
  padding-top: 10px;
  border-top: 1px solid #eee;
  margin-top: 15px;
}

.page-promo__faq-answer.active {
  display: block;
}

.page-promo__cta-section {
  background-color: #1A1A2E;
  color: #ffffff;
  text-align: center;
  padding: 80px 0;
}

.page-promo__cta-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 25px;
}

.page-promo__cta-description {
  font-size: 1.2em;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #f0f0f0;
}

.page-promo__cta-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-promo__hero-title {
    font-size: 3em;
  }
  .page-promo__hero-description {
    font-size: 1.1em;
  }
  .page-promo__section-title {
    font-size: 2em;
  }
  .page-promo__cta-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-promo__hero-section {
    padding: 60px 0;
  }
  .page-promo__hero-title {
    font-size: 2.5em;
  }
  .page-promo__hero-description {
    font-size: 1em;
  }
  .page-promo__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-promo__button {
    width: 80%;
    margin: 0 auto;
  }
  .page-promo__section-title {
    font-size: 1.8em;
  }
  .page-promo__text-content {
    font-size: 1em;
  }
  .page-promo__grid {
    grid-template-columns: 1fr;
  }
  .page-promo__promo-card {
    margin: 0 10px;
  }
  .page-promo__claim-steps {
    margin: 30px 10px 0 10px;
  }
  .page-promo__step-item, .page-promo__faq-item {
    padding: 20px;
    margin: 0 10px 20px 10px;
  }
  .page-promo__step-title {
    font-size: 1.5em;
  }
  .page-promo__features-grid {
    grid-template-columns: 1fr;
  }
  .page-promo__feature-item {
    margin: 0 10px;
  }
  .page-promo__faq-question {
    font-size: 1.2em;
  }
  .page-promo__cta-title {
    font-size: 1.8em;
  }
  .page-promo__cta-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-promo__container img {
    max-width: 100%;
    height: auto;
  }
  .page-promo__hero-section img,
  .page-promo__intro-section img,
  .page-promo__promotions-grid img,
  .page-promo__how-to-claim img,
  .page-promo__fair-play img,
  .page-promo__why-choose img,
  .page-promo__faq-section img,
  .page-promo__cta-section img {
    max-width: 100%;
    height: auto;
  }
}