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

.page-promo__hero-section {
  background-color: #000000; /* Dark background for hero section */
  color: #FFFFFF;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

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

.page-promo__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  z-index: 1;
}

.page-promo__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-promo__hero-description {
  font-size: 1.2em;
  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__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

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

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

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

.page-promo__feature-card,
.page-promo__promo-card,
.page-promo__step-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #f0f0f0;
}

.page-promo__feature-card:hover,
.page-promo__promo-card:hover,
.page-promo__step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-promo__feature-title,
.page-promo__promo-title,
.page-promo__step-title {
  font-size: 1.6em;
  color: #000000;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promo__feature-text,
.page-promo__promo-description,
.page-promo__step-text {
  font-size: 1em;
  color: #555555;
}

.page-promo__promo-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-promo__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  font-size: 1em;
  text-align: center;
}

.page-promo__btn--primary {
  background-color: #FCBC45; /* Login color */
  color: #000000; /* Dark text for FCBC45 */
  border: 2px solid #FCBC45;
}

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

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

.page-promo__btn--secondary:hover {
  background-color: #000000;
  color: #FFFFFF;
  transform: translateY(-2px);
}

.page-promo__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
  margin-top: 15px;
}

.page-promo__types-section {
  background-color: #f8f8f8;
  border-radius: 15px;
}

.page-promo__how-to-claim {
  background-color: #000000;
  color: #FFFFFF;
  border-radius: 15px;
}

.page-promo__how-to-claim .page-promo__section-title,
.page-promo__how-to-claim .page-promo__section-intro,
.page-promo__how-to-claim .page-promo__step-title,
.page-promo__how-to-claim .page-promo__step-text {
  color: #FFFFFF;
}

.page-promo__step-card {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  position: relative;
  padding-top: 50px;
}

.page-promo__step-number {
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #FCBC45;
  color: #000000;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  font-weight: bold;
  border: 2px solid #000000;
}

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

.page-promo__terms-item {
  background-color: #fefefe;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
  font-size: 1em;
  line-height: 1.8;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

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

.page-promo__faq-accordion {
  max-width: 900px;
  margin: 0 auto;
}

.page-promo__faq-item {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-promo__faq-question {
  background-color: #000000;
  color: #FFFFFF;
  padding: 20px 25px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  font-size: 1.1em;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
  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 {
  background-color: #FCBC45;
  color: #000000;
}

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

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

.page-promo__faq-answer.active {
  max-height: 200px; /* Adjust based on content */
  padding: 20px 25px;
}

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

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

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

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

  .page-promo__btn {
    width: 100%;
    max-width: 300px;
  }

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

  .page-promo__content-area {
    padding: 40px 15px;
  }

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

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

  /* Ensure images in content area do not overflow on mobile */
  .page-promo img {
    max-width: 100%;
    height: auto;
  }

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

  .page-promo__faq-answer.active {
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-promo__hero-title {
    font-size: 1.8em;
  }

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

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

  .page-promo__btn--primary,
  .page-promo__btn--secondary {
    padding: 10px 20px;
    font-size: 0.9em;
  }
}