.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 space for fixed header */
}

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

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

.page-promo__hero-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 500px; /* Minimum height for hero */
}

.page-promo__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  opacity: 0.7; /* Slightly dim the image to make text pop */
}

.page-promo__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 40px 20px;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay for text readability */
  border-radius: 8px;
}

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

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

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

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

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

.page-promo__cta-button--primary {
  background-color: #FCBC45;
  color: #000000;
}

.page-promo__cta-button--primary:hover {
  background-color: #e0a530;
}

.page-promo__cta-button--secondary {
  background-color: #000000;
  color: #FFFFFF;
  border: 1px solid #FCBC45;
}

.page-promo__cta-button--secondary:hover {
  background-color: #FCBC45;
  color: #000000;
}

.page-promo__cta-button--center {
  display: block;
  margin: 40px auto 0 auto;
  width: fit-content;
}

.page-promo__overview-section, .page-promo__why-choose-section, .page-promo__how-to-claim-section, .page-promo__faq-section {
  padding: 60px 0;
  background-color: #FFFFFF;
}

.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: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  padding-bottom: 20px;
}

.page-promo__promo-card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid #eee;
}

.page-promo__promo-card-title {
  font-size: 1.6em;
  color: #000000;
  margin: 20px 0 10px 0;
  padding: 0 15px;
}

.page-promo__promo-card-text {
  font-size: 1em;
  color: #666666;
  margin-bottom: 25px;
  padding: 0 15px;
}

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

.page-promo__feature-item {
  text-align: center;
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-promo__feature-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

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

.page-promo__feature-text {
  color: #666666;
}

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

.page-promo__step-card {
  background-color: #000000;
  color: #FFFFFF;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-promo__step-number {
  display: inline-block;
  background-color: #FCBC45;
  color: #000000;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 20px;
}

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

.page-promo__step-text {
  color: #CCCCCC;
}

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

.page-promo__faq-item {
  border: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-promo__faq-question {
  background-color: #f5f5f5;
  color: #000000;
  padding: 18px 25px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  font-size: 1.1em;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-promo__faq-question::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-promo__faq-question.active::after {
  content: '-';
  transform: rotate(0deg);
}

.page-promo__faq-question:hover {
  background-color: #eaeaea;
}

.page-promo__faq-answer {
  padding: 0 25px;
  background-color: #FFFFFF;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-promo__faq-answer.open {
  max-height: 200px; /* Adjust as needed */
  padding: 15px 25px;
}

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

.page-promo__more-info {
  text-align: center;
  margin-top: 30px;
  font-size: 1em;
  color: #666666;
}

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

.page-promo__text-link:hover {
  text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-promo__hero-title {
    font-size: 2.5em;
  }

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

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

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

  .page-promo__promo-card-image, .page-promo__feature-icon, .page-promo__hero-image {
    max-width: 100%;
    height: auto; /* Ensure images scale down */
  }

  .page-promo__promo-card-image {
    height: 200px; /* Adjust card image height for mobile */
  }

  .page-promo__feature-icon {
    width: 80px;
    height: 80px;
  }

  .page-promo__hero-content {
    padding: 20px;
  }

  .page-promo__promo-grid, .page-promo__feature-list, .page-promo__steps-wrapper {
    grid-template-columns: 1fr;
  }

  .page-promo__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-promo__faq-question {
    font-size: 1em;
    padding: 15px 20px;
  }

  .page-promo__faq-answer.open {
    max-height: 300px; /* Allow more height for mobile */
  }
}