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

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

.page-promo__hero-section {
  position: relative;
  background-color: #000000; /* Dark background for hero content area */
  padding: 0;
  overflow: hidden;
}

.page-promo__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.6); /* Darken image slightly for text readability */
}

.page-promo__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #FFFFFF;
  max-width: 900px;
  padding: 20px;
  z-index: 10;
}

.page-promo__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFFFFF;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-promo__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #F0F0F0;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

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

.page-promo__button {
  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;
  border: none;
  cursor: pointer;
}

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

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

.page-promo__button--login {
  background-color: #FCBC45;
  color: #000000;
}

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

.page-promo__button--large {
  padding: 18px 35px;
  font-size: 1.2em;
}

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

.page-promo__intro-section, .page-promo__how-to-claim, .page-promo__why-choose, .page-promo__faq-section, .page-promo__final-cta {
  padding: 60px 0;
}

.page-promo__text-content {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #444444;
}

.page-promo__promo-grid {
  background-color: #F8F8F8;
  padding: 80px 0;
}

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

.page-promo__promo-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  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 25px rgba(0, 0, 0, 0.12);
}

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

.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.6em;
  color: #000000;
  margin-bottom: 15px;
  line-height: 1.3;
}

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

.page-promo__promo-card .page-promo__button {
  width: 100%;
  text-align: center;
  background-color: #000000;
  color: #FFFFFF;
  padding: 12px 20px;
  font-size: 1em;
}

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

.page-promo__claim-steps {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-promo__claim-steps li {
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.06);
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.page-promo__step-title {
  font-size: 1.4em;
  color: #000000;
  margin-bottom: 10px;
  line-height: 1.3;
}

.page-promo__claim-steps p {
  font-size: 0.95em;
  color: #555555;
  text-align: center;
}

.page-promo__cta-block {
  text-align: center;
  margin-top: 60px;
  background-color: #000000;
  padding: 40px;
  border-radius: 12px;
  color: #FFFFFF;
}

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

.page-promo__feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-promo__feature-item {
  text-align: center;
  padding: 30px;
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.06);
}

.page-promo__feature-icon {
  width: 200px; /* Minimum 200px width */
  height: 150px; /* Minimum 200px height for content images, adjusted for aspect ratio */
  object-fit: contain;
  margin-bottom: 20px;
}

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

.page-promo__feature-description {
  font-size: 0.95em;
  color: #555555;
}

.page-promo__faq-list {
  margin-top: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-promo__faq-question {
  font-size: 1.2em;
  color: #000000;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-promo__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  color: #FCBC45;
}

.page-promo__faq-item.active .page-promo__faq-question::after {
  content: '-';
}

.page-promo__faq-answer {
  font-size: 0.95em;
  color: #555555;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}

.page-promo__faq-item.active .page-promo__faq-answer {
  max-height: 200px; /* Adjust as needed */
  margin-top: 15px;
}

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

.page-promo__final-cta .page-promo__section-title {
  color: #FFFFFF;
}

.page-promo__final-cta .page-promo__text-content {
  color: #F0F0F0;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promo__hero-title {
    font-size: 3em;
  }
  .page-promo__hero-description {
    font-size: 1.2em;
  }
  .page-promo__section-title {
    font-size: 2em;
  }
  .page-promo__grid-layout, .page-promo__claim-steps, .page-promo__feature-list {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-promo__hero-title {
    font-size: 2.5em;
  }
  .page-promo__hero-description {
    font-size: 1em;
  }
  .page-promo__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-promo__button--large {
    width: 100%;
  }
  .page-promo__section-title {
    font-size: 1.8em;
    padding-top: 20px;
  }
  .page-promo__text-content {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-promo__promo-grid, .page-promo__intro-section, .page-promo__how-to-claim, .page-promo__why-choose, .page-promo__faq-section, .page-promo__final-cta {
    padding: 40px 0;
  }
  .page-promo__card-title {
    font-size: 1.4em;
  }
  .page-promo__promo-card .page-promo__button {
    font-size: 0.95em;
  }
  .page-promo__cta-text {
    font-size: 1.2em;
  }
  .page-promo__faq-question {
    font-size: 1.1em;
  }
  /* Ensure content images are responsive and do not overflow */
  .page-promo img {
    max-width: 100%;
    height: auto;
  }
  .page-promo__hero-image {
    height: 400px; /* Adjust hero image height for mobile */
  }
  .page-promo__feature-icon {
    width: 200px; /* Maintain minimum size */
    height: auto; /* Adjust height for aspect ratio */
  }
  .page-promo__card-image {
    height: 200px; /* Adjust card image height for mobile */
  }
}

@media (max-width: 480px) {
  .page-promo__hero-title {
    font-size: 2em;
  }
  .page-promo__hero-description {
    font-size: 0.9em;
  }
  .page-promo__hero-content {
    padding: 15px;
  }
  .page-promo__button {
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-promo__hero-image {
    height: 300px;
  }
  .page-promo__cta-actions {
    flex-direction: column;
  }
}