.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 is not hidden by fixed header */
  background-color: #FFFFFF;
}

.page-promo__hero-section {
  position: relative;
  overflow: hidden;
  color: #FFFFFF;
  padding: 0;
  margin-bottom: 40px;
}

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

.page-promo__hero-container {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
}

.page-promo__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  max-width: 80%;
  z-index: 10;
}

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

.page-promo__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #FFFFFF;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

.page-promo__hero-actions {
  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.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
}

.page-promo__button--register {
  background-color: #FFFFFF;
  color: #000000;
}

.page-promo__button--register:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
}

.page-promo__button--login {
  background-color: #FCBC45;
  color: #000000;
}

.page-promo__button--login:hover {
  background-color: #e0a53b;
  transform: translateY(-2px);
}

.page-promo__content-area {
  max-width: 1200px;
  margin: 0 auto 60px auto;
  padding: 40px 20px;
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

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

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

.page-promo__text-block {
  margin-bottom: 30px;
  font-size: 1.1em;
  color: #333333;
}

.page-promo__text-block p {
  margin-bottom: 15px;
}

.page-promo__image-container {
  text-align: center;
  margin-bottom: 30px;
}

.page-promo__section-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  min-width: 200px; /* Enforce minimum size for content images */
  min-height: 200px;
}

.page-promo__button--claim, 
.page-promo__button--view-all, 
.page-promo__button--bet-now, 
.page-promo__button--download-app {
  background-color: #FCBC45;
  color: #000000;
  margin: 20px auto 0 auto;
  display: block;
  max-width: 300px;
}

.page-promo__button--claim:hover, 
.page-promo__button--view-all:hover, 
.page-promo__button--bet-now:hover, 
.page-promo__button--download-app:hover {
  background-color: #e0a53b;
  transform: translateY(-2px);
}

.page-promo__faq-section {
  background-color: #f9f9f9;
  border-radius: 10px;
  padding: 40px 20px;
}

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

.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 {
  transform: rotate(45deg);
}

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

.page-promo__faq-answer--visible {
  max-height: 200px; /* Adjust as needed */
  transition: max-height 0.5s ease-in;
}

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

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

.page-promo__cta-section .page-promo__section-title::after {
  background-color: #FFFFFF;
}

.page-promo__cta-description {
  font-size: 1.15em;
  margin-bottom: 40px;
  color: #f0f0f0;
}

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

.page-promo__button--register-cta {
  background-color: #FFFFFF;
  color: #000000;
}

.page-promo__button--register-cta:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
}

.page-promo__button--login-cta {
  background-color: #FCBC45;
  color: #000000;
}

.page-promo__button--login-cta:hover {
  background-color: #e0a53b;
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promo__hero-title {
    font-size: 2.5em;
  }
  .page-promo__hero-description {
    font-size: 1.1em;
  }
  .page-promo__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-promo__hero-title {
    font-size: 2em;
  }
  .page-promo__hero-description {
    font-size: 1em;
  }
  .page-promo__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-promo__button {
    width: 80%;
    max-width: 280px;
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-promo__content-area {
    padding: 30px 15px;
    margin-bottom: 40px;
  }
  .page-promo__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-promo__text-block, .page-promo__faq-answer {
    font-size: 0.95em;
  }
  .page-promo__faq-question {
    font-size: 1.2em;
  }
  .page-promo__cta-section {
    padding: 40px 15px;
  }
  .page-promo__cta-description {
    font-size: 1em;
  }
  .page-promo__cta-actions {
    flex-direction: column;
    gap: 15px;
  }
  /* Ensure all content area images are responsive and do not overflow */
  .page-promo__content-area img,
  .page-promo__hero-image {
    max-width: 100% !important;
    height: auto !important;
    min-width: 200px !important; /* Enforce minimum size */
    min-height: 200px !important;
  }
}

@media (max-width: 480px) {
  .page-promo__hero-title {
    font-size: 1.6em;
  }
  .page-promo__hero-description {
    font-size: 0.9em;
  }
  .page-promo__button {
    width: 90%;
    max-width: 250px;
  }
  .page-promo__section-title {
    font-size: 1.5em;
  }
  .page-promo__faq-question {
    font-size: 1.1em;
  }
  .page-promo__cta-description {
    font-size: 0.9em;
  }
}