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

.page-promo__hero-section {
  position: relative;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
  background-color: #000000; /* Main dark background for hero */
  overflow: hidden;
}

.page-promo__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
}

.page-promo__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  object-fit: cover;
  filter: brightness(0.6); /* Slightly dim the image to make text pop */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.page-promo__hero-content {
  position: relative;
  z-index: 1;
  color: #FFFFFF; /* White text on dark background */
  max-width: 800px;
}

.page-promo__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FCBC45; /* Login button color for emphasis */
}

.page-promo__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  line-height: 1.6;
}

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

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

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

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

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

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

.page-promo__button--claim,
.page-promo__button--learn,
.page-promo__button--join,
.page-promo__button--invite,
.page-promo__button--final-cta {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
  padding: 10px 20px;
  font-size: 1em;
}

.page-promo__button--claim:hover,
.page-promo__button--learn:hover,
.page-promo__button--join:hover,
.page-promo__button--invite:hover,
.page-promo__button--final-cta:hover {
  background-color: #E0A535;
  transform: translateY(-2px);
}

.page-promo__offers-section,
.page-promo__howto-section,
.page-promo__faq-section {
  padding: 60px 20px;
  background-color: #FFFFFF; /* Light background for content sections */
}

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

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

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

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

.page-promo__offer-card,
.page-promo__step-card {
  background-color: #F8F8F8;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.page-promo__offer-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block; /* Ensure image is block level */
}

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

.page-promo__card-title {
  font-size: 1.8em;
  color: #000000;
  margin-bottom: 15px;
}

.page-promo__card-text {
  font-size: 1em;
  color: #666666;
  margin-bottom: 20px;
  line-height: 1.5;
}

.page-promo__step-card {
  padding: 30px;
}

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

.page-promo__step-text {
  font-size: 1em;
  color: #666666;
  line-height: 1.5;
}

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

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

.page-promo__cta-bottom {
  text-align: center;
  margin-top: 60px;
}

.page-promo__cta-text {
  font-size: 1.3em;
  color: #000000;
  margin-bottom: 30px;
}

.page-promo__faq-items {
  margin-top: 40px;
}

.page-promo__faq-item {
  background-color: #F8F8F8;
  border-radius: 8px;
  padding: 20px 25px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

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

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

.page-promo__faq-answer a:hover {
  text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-promo__hero-section {
    padding: 30px 15px;
  }

  .page-promo__hero-title {
    font-size: 2.2em;
  }

  .page-promo__hero-description {
    font-size: 1em;
  }

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

  .page-promo__button {
    width: 100%;
    padding: 12px 20px;
  }

  .page-promo__section-title {
    font-size: 2em;
  }

  .page-promo__section-description {
    font-size: 0.95em;
  }

  .page-promo__offers-grid,
  .page-promo__steps-grid {
    grid-template-columns: 1fr;
  }

  .page-promo__offer-image {
    height: 200px;
  }

  .page-promo__offer-card,
  .page-promo__step-card {
    margin-bottom: 20px;
  }

  .page-promo__cta-text {
    font-size: 1.1em;
  }

  /* Mobile content area images should not overflow */
  .page-promo img {
    max-width: 100%;
    height: auto;
  }
}