.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); /* Ensures content starts below fixed header */
}

.page-promo__hero-section {
  background-color: #000000; /* Dark background for the hero section */
  padding: 0; /* Image will fill, content will overlay */
  position: relative;
  overflow: hidden;
}

.page-promo__hero-container {
  position: relative;
  width: 100%;
  max-width: 1920px; /* Max width for consistency */
  margin: 0 auto;
}

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

.page-promo__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #FFFFFF;
  max-width: 90%;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4); /* Semi-transparent overlay for text */
  border-radius: 10px;
}

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

.page-promo__intro-text {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promo__cta-buttons {
  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;
  white-space: nowrap;
}

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

.page-promo__button--register:hover {
  background-color: transparent;
  color: #FFFFFF;
  transform: translateY(-3px);
}

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

.page-promo__button--login:hover {
  background-color: transparent;
  color: #FCBC45;
  transform: translateY(-3px);
}

.page-promo__promotions-grid,
.page-promo__faq-section,
.page-promo__cta-final {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

.page-promo__section-heading {
  font-size: 2.2em;
  color: #000000;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.page-promo__section-heading::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FCBC45;
  border-radius: 2px;
}

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

.page-promo__grid-container {
  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.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid #eee;
}

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

.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;
}

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

.page-promo__card-text {
  font-size: 0.95em;
  color: #666666;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promo__button--claim {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
  text-align: center;
  width: 100%;
  padding: 12px 20px;
  font-size: 1em;
  border-radius: 6px;
}

.page-promo__button--claim:hover {
  background-color: transparent;
  color: #FCBC45;
}

.page-promo__faq-container {
  background-color: #F8F8F8;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-promo__faq-item {
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid #e0e0e0;
}

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

.page-promo__faq-question {
  font-size: 1.3em;
  color: #000000;
  margin-bottom: 10px;
  cursor: pointer;
  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(180deg);
}

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

.page-promo__faq-answer.open {
  max-height: 500px; /* Adjust as needed */
}

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

.page-promo__cta-final .page-promo__section-heading {
  color: #FFFFFF;
}

.page-promo__cta-final .page-promo__section-heading::after {
  background-color: #FCBC45;
}

.page-promo__cta-final .page-promo__section-description {
  color: #E0E0E0;
  margin-bottom: 30px;
}

.page-promo__button--register-large {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
  padding: 18px 40px;
  font-size: 1.2em;
  border-radius: 8px;
}

.page-promo__button--register-large:hover {
  background-color: transparent;
  color: #FCBC45;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-promo__main-heading {
    font-size: 2.2em;
  }

  .page-promo__intro-text {
    font-size: 1.1em;
  }

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

  .page-promo__grid-container {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .page-promo__promo-card {
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .page-promo__hero-content {
    padding: 15px;
  }

  .page-promo__main-heading {
    font-size: 1.8em;
    margin-bottom: 15px;
  }

  .page-promo__intro-text {
    font-size: 1em;
    margin-bottom: 20px;
  }

  .page-promo__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-promo__button {
    width: 100%;
    padding: 12px 20px;
  }

  .page-promo__promotions-grid,
  .page-promo__faq-section,
  .page-promo__cta-final {
    margin: 40px auto;
    padding: 0 15px;
  }

  .page-promo__section-heading {
    font-size: 1.6em;
  }

  .page-promo__section-description {
    font-size: 0.95em;
    margin-bottom: 30px;
  }

  .page-promo__faq-question {
    font-size: 1.1em;
  }

  .page-promo__button--register-large {
    padding: 15px 30px;
    font-size: 1.1em;
  }
  
  /* Ensure content area images do not overflow on mobile */
  .page-promo img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-promo__main-heading {
    font-size: 1.5em;
  }

  .page-promo__intro-text {
    font-size: 0.9em;
  }

  .page-promo__section-heading {
    font-size: 1.4em;
  }

  .page-promo__card-title {
    font-size: 1.3em;
  }

  .page-promo__faq-question {
    font-size: 1em;
  }
}