.page-promo {
  color: #333333; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

.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.4; /* Slightly dim the image to make text pop */
}

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

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

.page-promo__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

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

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

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

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

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

.page-promo__overview-section,
.page-promo__how-to-claim-section,
.page-promo__terms-section,
.page-promo__faq-section,
.page-promo__why-choose-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 40px 20px;
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-promo__section-title {
  font-size: 2.5em;
  color: #000000;
  text-align: center;
  margin-bottom: 30px;
  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: #FCBC45;
  border-radius: 2px;
}

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

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

.page-promo__promo-card {
  background-color: #f9f9f9;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 20px;
}

.page-promo__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

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

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

.page-promo__card-description {
  font-size: 0.95em;
  color: #666666;
  margin-bottom: 25px;
  flex-grow: 1;
  padding: 0 15px;
}

.page-promo__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-promo__btn--small:hover {
  background-color: #e0a538;
}

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

.page-promo__step-card {
  background-color: #fefefe;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.page-promo__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #FCBC45;
  color: #000000;
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

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

.page-promo__step-description {
  color: #666666;
  font-size: 1em;
}

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

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

.page-promo__claim-cta {
  text-align: center;
  margin-top: 50px;
}

.page-promo__btn--large {
  padding: 18px 40px;
  font-size: 1.2em;
  background-color: #000000;
  color: #FFFFFF;
  border: 2px solid #000000;
}

.page-promo__btn--large:hover {
  background-color: #333333;
}

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

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

.page-promo__faq-item {
  background-color: #fefefe;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.02);
}

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

.page-promo__faq-answer {
  color: #555555;
}

.page-promo__advantages-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 40px;
  max-width: 800px;
}

.page-promo__advantage-item {
  background-color: #f9f9f9;
  border-left: 5px solid #FCBC45;
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 5px;
  font-size: 1.1em;
  color: #333333;
}

.page-promo__advantage-item strong {
  color: #000000;
}

.page-promo__final-cta {
  text-align: center;
  margin-top: 50px;
  background-color: #000000;
  color: #FFFFFF;
  padding: 40px;
  border-radius: 10px;
}

.page-promo__final-cta-text {
  font-size: 1.5em;
  margin-bottom: 30px;
  color: #FCBC45;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promo__main-title {
    font-size: 3em;
  }
  .page-promo__hero-description {
    font-size: 1.2em;
  }
  .page-promo__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-promo__hero-section {
    padding: var(--header-offset, 120px) 15px 40px;
    min-height: 400px;
  }
  .page-promo__main-title {
    font-size: 2.5em;
  }
  .page-promo__hero-description {
    font-size: 1em;
  }
  .page-promo__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-promo__btn {
    width: 80%;
    max-width: 300px;
  }
  .page-promo__overview-section,
  .page-promo__how-to-claim-section,
  .page-promo__terms-section,
  .page-promo__faq-section,
  .page-promo__why-choose-section {
    margin: 40px auto;
    padding: 20px 15px;
  }
  .page-promo__section-title {
    font-size: 1.8em;
  }
  .page-promo__section-intro {
    font-size: 1em;
  }
  .page-promo__promo-grid {
    grid-template-columns: 1fr;
  }
  .page-promo__card-image {
    height: 200px; /* Adjust height for smaller screens */
  }
  .page-promo__steps-container {
    grid-template-columns: 1fr;
  }
  .page-promo__step-number {
    width: 50px;
    height: 50px;
    font-size: 1.8em;
  }
  .page-promo__step-title {
    font-size: 1.5em;
  }
  .page-promo__faq-question {
    font-size: 1.1em;
  }
  .page-promo__final-cta-text {
    font-size: 1.2em;
  }
  .page-promo img {
    max-width: 100%;
    height: auto;
  }
  .page-promo__card-image, .page-promo__hero-image {
    min-width: 200px;
    min-height: 200px;
  }
}

@media (max-width: 480px) {
  .page-promo__main-title {
    font-size: 2em;
  }
  .page-promo__hero-description {
    font-size: 0.9em;
  }
  .page-promo__btn {
    width: 90%;
  }
  .page-promo__section-title {
    font-size: 1.5em;
  }
  .page-promo__final-cta-text {
    font-size: 1em;
  }
}