.page-promo {
  color: #333333; /* Dark text for light body background */
  padding-top: var(--header-offset, 120px); /* Ensure content clears fixed header */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-promo__hero-section {
  position: relative;
  overflow: hidden;
  background-color: #000000;
  padding-bottom: 50px;
}

.page-promo__hero-container {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-promo__hero-image {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.7;
  object-fit: cover;
  max-height: 700px; /* Limit height for hero image */
}

.page-promo__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 800px;
  padding: 30px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  color: #FFFFFF;
}

.page-promo__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FCBC45; /* Login button color for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promo__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #F0F0F0;
}

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

.page-promo__cta-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;
  min-width: 200px; /* Ensure buttons are large enough */
  text-align: center;
}

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

.page-promo__cta-button--register:hover {
  background-color: #F0F0F0;
  transform: translateY(-2px);
}

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

.page-promo__cta-button--claim:hover, .page-promo__cta-button--login:hover {
  background-color: #e0a53b;
  transform: translateY(-2px);
}

.page-promo__section {
  padding: 60px 20px;
  background-color: #FFFFFF;
  border-bottom: 1px solid #eee;
}

.page-promo__section:last-of-type {
  border-bottom: none;
}

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

.page-promo__section-title {
  font-size: 2.2em;
  color: #000000;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.page-promo__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FCBC45;
  margin: 10px auto 0;
  border-radius: 2px;
}

.page-promo__section-intro {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #555555;
}

.page-promo__content-grid {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
}

.page-promo__content-grid--reverse {
  flex-direction: row-reverse;
}

.page-promo__text-content {
  flex: 1;
  min-width: 300px;
}

.page-promo__image-wrapper {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-promo__image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  object-fit: cover;
  min-width: 200px; /* Enforce minimum size for content images */
  min-height: 200px;
}

.page-promo__sub-title {
  font-size: 1.6em;
  color: #000000;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-promo__paragraph {
  margin-bottom: 15px;
  color: #444444;
}

.page-promo__button {
  display: inline-block;
  background-color: #FCBC45;
  color: #000000;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 20px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.page-promo__claim-steps {
  list-style: none;
  padding: 0;
}

.page-promo__claim-step {
  margin-bottom: 25px;
  padding-left: 30px;
  position: relative;
}

.page-promo__claim-step::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  position: absolute;
  left: 0;
  top: 0px;
  background-color: #FCBC45;
  color: #000000;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 0.9em;
}

.page-promo__terms-list {
  list-style: disc;
  padding-left: 25px;
  margin-top: 20px;
  color: #444444;
}

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

.page-promo__link {
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
}

.page-promo__link:hover {
  text-decoration: underline;
}

.page-promo__final-cta {
  background-color: #000000;
  color: #FFFFFF;
  text-align: center;
  padding: 80px 20px;
}

.page-promo__final-cta-title {
  font-size: 2.5em;
  color: #FCBC45;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promo__final-cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #F0F0F0;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-promo__content-grid {
    flex-direction: column;
  }
  .page-promo__content-grid--reverse {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .page-promo {
    padding-top: var(--header-offset, 80px); /* Adjust for mobile header */
  }
  .page-promo__hero-title {
    font-size: 2em;
  }
  .page-promo__hero-description {
    font-size: 1em;
  }
  .page-promo__cta-button {
    padding: 12px 20px;
    font-size: 1em;
    min-width: unset;
    width: 100%;
  }
  .page-promo__cta-group {
    flex-direction: column;
  }
  .page-promo__section-title {
    font-size: 1.8em;
  }
  .page-promo__section-intro {
    font-size: 1em;
  }
  .page-promo__sub-title {
    font-size: 1.4em;
  }
  .page-promo__image {
    max-width: 100%;
    height: auto;
  }
  .page-promo__hero-content {
    padding: 20px;
    width: 95%;
  }
  .page-promo__final-cta-title {
    font-size: 2em;
  }
  .page-promo__final-cta-description {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-promo__hero-title {
    font-size: 1.6em;
  }
  .page-promo__hero-description {
    font-size: 0.9em;
  }
  .page-promo__section-title {
    font-size: 1.6em;
  }
  .page-promo__sub-title {
    font-size: 1.2em;
  }
  .page-promo__section, .page-promo__final-cta {
    padding: 40px 15px;
  }
  .page-promo__image-wrapper img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Ensure images are not too small */
    min-height: 200px;
  }
}