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

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

.page-promo__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.6; /* Slightly dim image to make text readable */
}

.page-promo__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4); /* Semi-transparent overlay for text readability */
  border-radius: 10px;
}

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

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

.page-promo__hero-button {
  display: inline-block;
  background-color: #FCBC45; /* Login color for CTA */
  color: #000000; /* Dark text for light button */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2rem;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-promo__hero-button:hover {
  background-color: #FFD700; /* Slightly lighter gold on hover */
  transform: translateY(-3px);
}

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

.page-promo__featured-promos,
.page-promo__how-to-claim,
.page-promo__vip-benefits,
.page-promo__faq,
.page-promo__cta-bottom {
  padding: 80px 0;
  text-align: center;
}

.page-promo__featured-promos {
  background-color: #f8f8f8;
}

.page-promo__section-title {
  font-size: 2.8rem;
  margin-bottom: 20px;
  color: #000000;
}

.page-promo__section-intro {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto 50px;
  line-height: 1.6;
  color: #555555;
}

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

.page-promo__promo-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-promo__promo-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.page-promo__promo-card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.page-promo__promo-card-title {
  font-size: 1.8rem;
  color: #000000;
  margin: 25px 25px 15px;
}

.page-promo__promo-card-description {
  font-size: 1rem;
  color: #666666;
  margin: 0 25px 25px;
  flex-grow: 1;
  line-height: 1.5;
}

.page-promo__promo-card-button {
  display: inline-block;
  background-color: #000000; /* Main color for button */
  color: #FFFFFF; /* White text for dark button */
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  transition: background-color 0.3s ease;
  margin: 0 25px 25px;
  align-self: flex-start;
}

.page-promo__promo-card-button:hover {
  background-color: #333333;
}

.page-promo__how-to-claim {
  background-color: #FFFFFF;
}

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

.page-promo__claim-step {
  text-align: center;
  padding: 20px;
  background-color: #f0f0f0;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

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

.page-promo__step-description {
  font-size: 1rem;
  color: #555555;
  line-height: 1.6;
}

.page-promo__step-description a {
  color: #FCBC45; /* Login color for links */
  text-decoration: none;
  font-weight: bold;
}

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

.page-promo__vip-benefits {
  background-color: #000000; /* Dark background */
  color: #FFFFFF; /* Light text */
}

.page-promo__vip-benefits .page-promo__section-title,
.page-promo__vip-benefits .page-promo__section-intro {
  color: #FFFFFF;
}

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

.page-promo__vip-feature-item {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-promo__vip-feature-title {
  font-size: 1.7rem;
  color: #FCBC45; /* Login color */
  margin-bottom: 15px;
}

.page-promo__vip-feature-description {
  font-size: 1rem;
  color: #e0e0e0;
  line-height: 1.6;
}

.page-promo__vip-button {
  display: inline-block;
  background-color: #FCBC45; /* Login color for CTA */
  color: #000000; /* Dark text for light button */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2rem;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin-top: 50px;
}

.page-promo__vip-button:hover {
  background-color: #FFD700;
  transform: translateY(-3px);
}

.page-promo__faq {
  background-color: #FFFFFF;
}

.page-promo__faq-item {
  text-align: left;
  margin-bottom: 25px;
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
}

.page-promo__faq-item:last-child {
  border-bottom: none;
}

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

.page-promo__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.8rem;
  color: #FCBC45;
  transition: transform 0.3s ease;
}

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

.page-promo__faq-answer {
  font-size: 1rem;
  color: #555555;
  line-height: 1.6;
  /* display: none; */
  /* max-height: 0; */
  /* overflow: hidden; */
  /* transition: max-height 0.3s ease-out, padding 0.3s ease-out; */
  padding-left: 15px;
}

/* .page-promo__faq-answer.active { */
/*   max-height: 200px; */
/*   padding-top: 10px; */
/* } */

.page-promo__cta-bottom {
  background-color: #000000; /* Dark background */
  color: #FFFFFF; /* Light text */
  padding: 100px 0;
}

.page-promo__cta-title {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #FCBC45;
}

.page-promo__cta-description {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.page-promo__cta-button {
  display: inline-block;
  background-color: #FCBC45; /* Login color for CTA */
  color: #000000; /* Dark text for light button */
  padding: 18px 40px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.3rem;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-promo__cta-button:hover {
  background-color: #FFD700;
  transform: translateY(-5px);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-promo__hero-title {
    font-size: 2.8rem;
  }
  .page-promo__hero-description {
    font-size: 1.1rem;
  }
  .page-promo__section-title {
    font-size: 2.2rem;
  }
  .page-promo__promo-card-title {
    font-size: 1.5rem;
  }
  .page-promo__cta-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .page-promo__hero-section {
    min-height: 400px;
    padding-top: var(--header-offset, 80px); /* Adjust for mobile header */
  }
  .page-promo__hero-title {
    font-size: 2.2rem;
  }
  .page-promo__hero-description {
    font-size: 1rem;
  }
  .page-promo__hero-button {
    padding: 12px 25px;
    font-size: 1rem;
  }
  .page-promo__featured-promos,
  .page-promo__how-to-claim,
  .page-promo__vip-benefits,
  .page-promo__faq,
  .page-promo__cta-bottom {
    padding: 60px 0;
  }
  .page-promo__section-title {
    font-size: 2rem;
  }
  .page-promo__section-intro {
    font-size: 0.95rem;
    margin-bottom: 30px;
  }
  .page-promo__promo-grid {
    grid-template-columns: 1fr;
  }
  .page-promo__promo-card-image {
    height: 200px;
  }
  .page-promo__promo-card-title {
    font-size: 1.4rem;
  }
  .page-promo__claim-steps {
    grid-template-columns: 1fr;
  }
  .page-promo__vip-features {
    grid-template-columns: 1fr;
  }
  .page-promo__vip-button {
    padding: 12px 25px;
    font-size: 1rem;
    margin-top: 30px;
  }
  .page-promo__faq-question {
    font-size: 1.3rem;
  }
  .page-promo__cta-title {
    font-size: 2rem;
  }
  .page-promo__cta-description {
    font-size: 1rem;
  }
  .page-promo__cta-button {
    padding: 15px 30px;
    font-size: 1.1rem;
  }
  .page-promo img {
    max-width: 100%;
    height: auto;
  }
}