.page-promotions {
  background-color: #0d0d0d;
  color: #FFFFFF;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-promotions__hero-section {
  padding-top: 10px; /* Small top padding to respect header offset */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 40px;
}

.page-promotions__hero-image-wrapper {
  width: 100%;
  max-width: 1920px;
  margin-bottom: 20px;
}

.page-promotions__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-promotions__hero-content {
  max-width: 900px;
  padding: 0 20px;
}

.page-promotions__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 15px;
  color: #FFFFFF;
}

.page-promotions__intro-text {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #e5e5e5;
}

.page-promotions__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-promotions__cta-button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  white-space: nowrap;
}

.page-promotions__cta-button--register {
  background-color: #FFFFFF;
  color: #000000;
  border: 2px solid #FFFFFF;
}

.page-promotions__cta-button--register:hover {
  background-color: transparent;
  color: #FFFFFF;
}

.page-promotions__cta-button--login {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-promotions__cta-button--login:hover {
  background-color: transparent;
  color: #FCBC45;
}

.page-promotions__featured-promos-section,
.page-promotions__how-to-claim-section,
.page-promotions__faq-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.page-promotions__section-title {
  font-size: 2.5rem;
  color: #FFFFFF;
  margin-bottom: 20px;
}

.page-promotions__section-description {
  font-size: 1.1rem;
  color: #e5e5e5;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-promotions__promo-card,
.page-promotions__step-card {
  background-color: #1a1a1a;
  border-radius: 12px;
  overflow: hidden;
  text-align: left;
  display: flex;
  flex-direction: column;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions__promo-card:hover,
.page-promotions__step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-promotions__promo-card-image-wrapper {
  width: 100%;
  height: 225px; /* Fixed height for image consistency */
  overflow: hidden;
}

.page-promotions__promo-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.page-promotions__promo-card-title,
.page-promotions__step-title {
  font-size: 1.5rem;
  color: #FCBC45;
  margin-bottom: 15px;
}

.page-promotions__promo-card-text,
.page-promotions__step-text {
  font-size: 1rem;
  color: #e5e5e5;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promotions__promo-card-button,
.page-promotions__step-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #FCBC45;
  color: #000000;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background-color 0.3s ease;
  align-self: flex-start; /* Align button to start */
}

.page-promotions__promo-card-button:hover,
.page-promotions__step-button:hover {
  background-color: #e0a532;
}

.page-promotions__step-card {
  text-align: center;
  padding: 30px;
}

.page-promotions__step-number {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background-color: #FCBC45;
  color: #000000;
  font-size: 1.8rem;
  font-weight: bold;
  border-radius: 50%;
  margin: 0 auto 20px auto;
}

.page-promotions__faq-list {
  margin-top: 40px;
  text-align: left;
}

.page-promotions__faq-item {
  background-color: #1a1a1a;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions__faq-question {
  font-size: 1.3rem;
  color: #FFFFFF;
  margin-bottom: 10px;
  cursor: pointer;
}

.page-promotions__faq-answer {
  font-size: 1rem;
  color: #e5e5e5;
  display: block; /* Ensure answer is visible by default */
}

.page-promotions__faq-cta {
  margin-top: 40px;
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-promotions__cta-button--secondary {
  background-color: transparent;
  color: #FCBC45;
  border: 2px solid #FCBC45;
}

.page-promotions__cta-button--secondary:hover {
  background-color: #FCBC45;
  color: #000000;
}

@media (max-width: 768px) {
  .page-promotions__hero-section {
    padding-top: 10px;
  }

  .page-promotions__main-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .page-promotions__intro-text,
  .page-promotions__section-description {
    font-size: 1rem;
  }

  .page-promotions__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-promotions__cta-button {
    width: 100%;
    max-width: 280px;
    padding: 10px 20px;
  }

  .page-promotions__featured-promos-section,
  .page-promotions__how-to-claim-section,
  .page-promotions__faq-section {
    padding: 40px 15px;
  }

  .page-promotions__section-title {
    font-size: 2rem;
  }

  .page-promotions__promo-cards-grid,
  .page-promotions__steps-grid {
    grid-template-columns: 1fr;
  }

  .page-promotions__promo-card-image-wrapper {
    height: 180px;
  }

  .page-promotions__promo-card-title,
  .page-promotions__step-title {
    font-size: 1.3rem;
  }

  .page-promotions__faq-question {
    font-size: 1.1rem;
  }

  .page-promotions__faq-cta {
    flex-direction: column;
    gap: 15px;
  }

  /* Ensure content area images do not overflow */
  .page-promotions img {
    max-width: 100%;
    height: auto;
  }
}