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

.page-promo__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
}

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

.page-promo__hero-container {
  position: relative;
  max-width: 1920px; /* Max width for the hero image and content */
  margin: 0 auto;
}

.page-promo__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #ffffff; /* White text on dark background overlay */
  padding: 20px;
  max-width: 80%;
}

.page-promo__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  line-height: 1.2;
}

.page-promo__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  line-height: 1.6;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

.page-promo__button {
  display: inline-block;
  padding: 15px 30px;
  background-color: #FFD700; /* Gold button */
  color: #8B0000; /* Deep red text */
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-promo__button:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
  color: #5a0000;
}

.page-promo__button--primary {
  background-color: #FFD700;
  color: #8B0000;
}

.page-promo__button--secondary {
  background-color: #8B0000; /* Deep red button */
  color: #FFD700; /* Gold text */
}

.page-promo__button--secondary:hover {
  background-color: #6a0000; /* Darker red on hover */
  color: #ffe033;
}

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

.page-promo__section-title {
  font-size: 2.5em;
  color: #8B0000; /* Deep red for section titles */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-promo__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700; /* Gold underline */
  margin: 10px auto 0;
}

.page-promo__text-content {
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 20px;
  text-align: center;
}

.page-promo__why-choose-section,
.page-promo__types-section,
.page-promo__how-to-claim-section,
.page-promo__responsible-gambling-section,
.page-promo__latest-details-section,
.page-promo__faq-section,
.page-promo__cta-section {
  padding: 60px 0;
}

.page-promo__why-choose-section {
  background-color: #f0f0f0;
}

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

.page-promo__feature-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-promo__feature-title {
  font-size: 1.5em;
  color: #FFD700; /* Gold for feature titles */
  margin-bottom: 15px;
}

.page-promo__feature-description {
  font-size: 1em;
  line-height: 1.6;
}

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

.page-promo__promo-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.page-promo__promo-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;
  justify-content: space-between;
}

.page-promo__card-title {
  font-size: 1.6em;
  color: #8B0000; /* Deep red for card titles */
  margin-bottom: 15px;
}

.page-promo__card-description {
  font-size: 0.95em;
  line-height: 1.6;
  margin-bottom: 20px;
}

.page-promo__card-content .page-promo__button {
  align-self: flex-start;
  padding: 10px 20px;
  font-size: 0.9em;
}

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

.page-promo__step-item {
  background-color: #8B0000; /* Deep red background */
  color: #ffffff; /* White text */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-promo__step-number {
  font-size: 3em;
  font-weight: bold;
  color: #FFD700; /* Gold number */
  margin-bottom: 15px;
}

.page-promo__step-title {
  font-size: 1.8em;
  color: #FFD700; /* Gold title */
  margin-bottom: 15px;
}

.page-promo__step-description {
  font-size: 1em;
  line-height: 1.6;
  margin-bottom: 20px;
}

.page-promo__step-item .page-promo__button {
  background-color: #FFD700;
  color: #8B0000;
}

.page-promo__step-item .page-promo__button:hover {
  background-color: #e6c200;
  color: #5a0000;
}

.page-promo__responsible-gambling-section {
  background-color: #f0f0f0;
  text-align: center;
}

.page-promo__image--full-width {
  width: 100%;
  height: auto;
  max-width: 800px; /* Limit max width for a cleaner look */
  display: block;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-promo__detail-list {
  margin-top: 40px;
}

.page-promo__detail-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
  text-align: left;
}

.page-promo__detail-title {
  font-size: 1.8em;
  margin-bottom: 15px;
}

.page-promo__detail-title a {
  color: #8B0000; /* Deep red for detail links */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-promo__detail-title a:hover {
  color: #FFD700; /* Gold on hover */
}

.page-promo__detail-description {
  font-size: 1em;
  line-height: 1.6;
  margin-bottom: 20px;
}

.page-promo__detail-item .page-promo__button {
  padding: 10px 20px;
  font-size: 0.9em;
  background-color: #FFD700;
  color: #8B0000;
}

.page-promo__faq-accordion {
  margin-top: 40px;
}

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

.page-promo__faq-question {
  width: 100%;
  padding: 20px;
  text-align: left;
  font-size: 1.2em;
  font-weight: bold;
  color: #333333;
  background-color: #f9f9f9;
  border: none;
  cursor: pointer;
  outline: none;
  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.page-promo__faq-question--active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-promo__faq-question:hover {
  background-color: #f0f0f0;
}

.page-promo__faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}

.page-promo__faq-answer p {
  padding-bottom: 20px;
  line-height: 1.6;
  font-size: 1em;
}

.page-promo__cta-section {
  background-color: #8B0000; /* Deep red background */
  color: #ffffff; /* White text */
  text-align: center;
}

.page-promo__cta-section .page-promo__section-title {
  color: #FFD700; /* Gold title */
}

.page-promo__cta-section .page-promo__text-content {
  color: #f0f0f0;
}

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

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

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

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

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

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

  .page-promo__button {
    padding: 12px 25px;
    font-size: 1em;
  }

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

  .page-promo__text-content {
    font-size: 0.95em;
  }

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

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

  /* Ensure content images are responsive and do not overflow */
  .page-promo img {
    max-width: 100%;
    height: auto;
  }

  .page-promo__hero-content {
    max-width: 90%;
  }

  .page-promo__image--full-width {
    max-width: 100%;
  }
}

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

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

  .page-promo__button {
    padding: 10px 20px;
    font-size: 0.9em;
  }

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

  .page-promo__container {
    padding: 20px 15px;
  }

  .page-promo__promo-card .page-promo__card-title {
    font-size: 1.4em;
  }

  .page-promo__step-number {
    font-size: 2.5em;
  }

  .page-promo__step-title {
    font-size: 1.5em;
  }
}