.page-promo {
  color: #333333; /* Default text color for light background */
  background-color: #FFFFFF;
}

.page-promo__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--header-offset, 120px) 20px 60px; /* Ensure space for fixed header */
  overflow: hidden; /* Prevent image overflow */
  background-color: #000000; /* Dark background for hero */
  color: #FFFFFF;
}

.page-promo__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page-promo__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

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

.page-promo__hero-title {
  font-size: 3.2em;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FFFFFF;
}

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

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

.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--register {
  background-color: #FFFFFF; /* Register button color */
  color: #000000;
  border: 2px solid #FFFFFF;
}

.page-promo__button--register:hover {
  background-color: transparent;
  color: #FFFFFF;
  transform: translateY(-3px);
}

.page-promo__button--login {
  background-color: #FCBC45; /* Login button color */
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-promo__button--login:hover {
  background-color: transparent;
  color: #FCBC45;
  transform: translateY(-3px);
}

.page-promo__section-title {
  font-size: 2.5em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  color: #000000;
}

.page-promo__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
  line-height: 1.6;
  color: #555555;
}

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

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

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

.page-promo__promo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.page-promo__promo-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

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

.page-promo__promo-title {
  font-size: 1.5em;
  font-weight: bold;
  margin-bottom: 15px;
  color: #000000;
}

.page-promo__promo-text {
  font-size: 1em;
  line-height: 1.6;
  color: #666666;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promo__button--claim,
.page-promo__button--learn-more {
  background-color: #FCBC45;
  color: #000000;
  padding: 12px 25px;
  font-size: 0.95em;
  border-radius: 6px;
  text-align: center;
  border: none;
  margin-top: auto; /* Push button to bottom */
}

.page-promo__button--claim:hover,
.page-promo__button--learn-more:hover {
  background-color: #e6a73c;
}

.page-promo__how-to-claim {
  padding: 80px 20px;
  background-color: #F0F0F0;
}

.page-promo__steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 50px auto 0;
}

.page-promo__step-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-promo__step-icon-wrapper {
  background-color: #FCBC45;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.page-promo__step-icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.page-promo__step-title {
  font-size: 1.3em;
  font-weight: bold;
  margin-bottom: 15px;
  color: #000000;
}

.page-promo__step-text {
  font-size: 0.95em;
  line-height: 1.6;
  color: #666666;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promo__button--small {
  padding: 10px 20px;
  font-size: 0.9em;
  background-color: #000000;
  color: #FFFFFF;
  border-radius: 6px;
  text-align: center;
  margin-top: auto;
}

.page-promo__button--small:hover {
  background-color: #333333;
}

.page-promo__terms-conditions {
  padding: 80px 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.page-promo__terms-list {
  list-style: disc inside;
  margin: 40px 0;
  padding-left: 20px;
  font-size: 1em;
  line-height: 1.8;
  color: #555555;
}

.page-promo__terms-item {
  margin-bottom: 10px;
}

.page-promo__terms-item a {
  color: #FCBC45;
  text-decoration: none;
}

.page-promo__terms-item a:hover {
  text-decoration: underline;
}

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

.page-promo__button--outline {
  background-color: transparent;
  color: #000000;
  border: 2px solid #000000;
  padding: 12px 25px;
  font-size: 0.95em;
  border-radius: 6px;
  text-align: center;
}

.page-promo__button--outline:hover {
  background-color: #000000;
  color: #FFFFFF;
}

.page-promo__faq {
  padding: 80px 20px;
  background-color: #F8F8F8;
}

.page-promo__faq-item {
  max-width: 900px;
  margin: 0 auto 25px;
  background-color: #FFFFFF;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.page-promo__faq-question {
  font-size: 1.3em;
  font-weight: bold;
  margin-bottom: 10px;
  color: #000000;
}

.page-promo__faq-answer {
  font-size: 1em;
  line-height: 1.7;
  color: #555555;
}

.page-promo__cta-section {
  padding: 80px 20px;
  background-color: #000000; /* Dark background for CTA */
  color: #FFFFFF;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.page-promo__cta-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page-promo__cta-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}

.page-promo__cta-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.page-promo__cta-title {
  font-size: 2.8em;
  font-weight: bold;
  margin-bottom: 20px;
  color: #FFFFFF;
}

.page-promo__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  line-height: 1.6;
  color: #F0F0F0;
}

.page-promo__button--primary {
  background-color: #FCBC45;
  color: #000000;
  padding: 18px 40px;
  font-size: 1.2em;
  border-radius: 10px;
  border: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

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

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

@media (max-width: 768px) {
  .page-promo__hero-section {
    padding: var(--header-offset, 120px) 15px 40px;
  }
  .page-promo__hero-title {
    font-size: 2.2em;
  }
  .page-promo__hero-description {
    font-size: 1em;
  }
  .page-promo__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-promo__button {
    width: 100%;
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-promo__section-title {
    font-size: 1.8em;
  }
  .page-promo__section-description {
    font-size: 0.95em;
    margin-bottom: 30px;
  }
  .page-promo__promotions-grid,
  .page-promo__how-to-claim,
  .page-promo__terms-conditions,
  .page-promo__faq,
  .page-promo__cta-section {
    padding: 50px 15px;
  }
  .page-promo__grid-container,
  .page-promo__steps-container {
    grid-template-columns: 1fr;
  }
  .page-promo__promo-image {
    height: 200px;
  }
  .page-promo__promo-title,
  .page-promo__step-title,
  .page-promo__faq-question {
    font-size: 1.2em;
  }
  .page-promo__cta-title {
    font-size: 2em;
  }
  .page-promo__cta-description {
    font-size: 1em;
  }
  .page-promo__button--primary {
    padding: 15px 30px;
    font-size: 1.1em;
    width: 100%;
  }

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