.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); /* Space for fixed header */
}

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

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

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

.page-promo__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.page-promo__main-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FCBC45; /* Accent color for main title */
}

.page-promo__tagline {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promo__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

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

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

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

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

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

.page-promo__overview-section,
.page-promo__terms-section,
.page-promo__cta-section--bottom {
  padding: 60px 0;
  background-color: #FFFFFF;
}

.page-promo__overview-section {
  background-color: #f8f8f8;
}

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

.page-promo__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
  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.08);
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-promo__card-image {
  width: 100%;
  max-width: 400px;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 25px;
  min-width: 200px;
  min-height: 200px;
}

.page-promo__card-title {
  font-size: 1.6em;
  color: #000000;
  margin-bottom: 15px;
  min-height: 60px; /* Ensure consistent title height */
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-promo__card-text {
  font-size: 1em;
  color: #666666;
  margin-bottom: 25px;
  flex-grow: 1; /* Allow text to take available space */
}

.page-promo__btn--small {
  padding: 10px 20px;
  font-size: 0.95em;
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-promo__btn--small:hover {
  background-color: #000000;
  color: #FCBC45;
  border-color: #FCBC45;
}

.page-promo__terms-section {
  background-color: #FFFFFF;
}

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

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

.page-promo__faq-question {
  background-color: #f9f9f9;
  color: #000000;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.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-question:hover {
  background-color: #f0f0f0;
}

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

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

.page-promo__faq-answer p {
  margin-bottom: 15px;
}

.page-promo__cta-section--bottom {
  background-color: #000000;
  color: #FFFFFF;
  text-align: center;
  padding: 80px 20px;
}

.page-promo__cta-section--bottom .page-promo__section-title {
  color: #FCBC45;
}

.page-promo__cta-section--bottom .page-promo__section-description {
  color: #f0f0f0;
}

.page-promo__cta-section--bottom .page-promo__cta-buttons {
  margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promo__main-title {
    font-size: 2.8em;
  }
  .page-promo__tagline {
    font-size: 1.1em;
  }
  .page-promo__section-title {
    font-size: 2em;
  }
  .page-promo__promo-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-promo {
    overflow-x: hidden;
  }
  .page-promo__hero-section {
    padding: 60px 20px;
  }
  .page-promo__main-title {
    font-size: 2.2em;
  }
  .page-promo__tagline {
    font-size: 1em;
  }
  .page-promo__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-promo__btn {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  .page-promo__section-title {
    font-size: 1.8em;
  }
  .page-promo__section-description {
    font-size: 0.95em;
  }
  .page-promo__promo-card {
    padding: 20px;
  }
  .page-promo__card-title {
    font-size: 1.4em;
  }
  .page-promo__card-text {
    font-size: 0.9em;
  }
  .page-promo__faq-question {
    font-size: 1.1em;
    padding: 18px 20px;
  }
  .page-promo__faq-answer {
    padding: 15px 20px;
  }
  .page-promo__overview-section,
  .page-promo__terms-section,
  .page-promo__cta-section--bottom {
    padding: 40px 0;
  }
  .page-promo__container {
    padding: 0 15px;
  }
  .page-promo__promo-grid img,
  .page-promo__overview-section img,
  .page-promo__terms-section img,
  .page-promo__cta-section--bottom img {
    max-width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 200px;
  }
}

@media (max-width: 480px) {
  .page-promo__main-title {
    font-size: 1.8em;
  }
  .page-promo__tagline {
    font-size: 0.9em;
  }
  .page-promo__section-title {
    font-size: 1.5em;
  }
  .page-promo__card-title {
    font-size: 1.2em;
  }
  .page-promo__btn--small {
    font-size: 0.9em;
    padding: 8px 15px;
  }
}