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

.page-promo__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: var(--header-offset, 120px); /* Ensures content is below fixed header */
  min-height: 500px; /* Ensure hero section has a minimum height */
}

.page-promo__hero-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  filter: brightness(0.6); /* Slightly dim the background image for text readability, but not changing color */
}

.page-promo__hero-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px; /* Adjusted padding to accommodate image */
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
}

.page-promo__hero-title {
  font-size: 3.5em;
  font-weight: 700;
  margin-bottom: 20px;
  color: #FFD700; /* Gold main color */
  line-height: 1.2;
}

.page-promo__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  line-height: 1.6;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promo__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold main color */
  color: #000080; /* Dark blue text for contrast */
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.4em;
  font-weight: 700;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

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

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

.page-promo__section-title {
  font-size: 2.8em;
  color: #000080; /* Dark blue auxiliary color */
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700;
}

.page-promo__section-intro {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 50px;
  line-height: 1.6;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-promo__why-80jili-promos {
  background-color: #f8f8f8;
  padding: 60px 0;
}

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

.page-promo__feature-card {
  background-color: #ffffff;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-promo__feature-icon {
  width: 250px; /* Min size 200px, so 250px is good */
  height: 187px; /* Maintain aspect ratio for 4:3 */
  object-fit: contain;
  margin-bottom: 20px;
}

.page-promo__feature-title {
  font-size: 1.8em;
  color: #000080;
  margin-bottom: 15px;
}

.page-promo__feature-text {
  font-size: 1em;
  line-height: 1.7;
  color: #555555;
}

.page-promo__types-of-promos {
  padding: 60px 0;
}

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

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

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

.page-promo__promo-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
}

.page-promo__promo-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-promo__promo-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
  line-height: 1.3;
}

.page-promo__promo-description {
  font-size: 1em;
  color: #666666;
  line-height: 1.6;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-promo__promo-button {
  display: inline-block;
  background-color: #000080; /* Dark blue auxiliary color */
  color: #FFD700; /* Gold text for contrast */
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1em;
  text-align: center;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-promo__promo-button:hover {
  background-color: #000066;
  transform: translateY(-2px);
}

.page-promo__how-to-claim {
  background-color: #f0f0f0;
  padding: 60px 0;
}

.page-promo__claim-steps {
  list-style: none;
  padding: 0;
  counter-reset: step-counter;
  margin-top: 40px;
}

.page-promo__claim-step {
  background-color: #ffffff;
  border-left: 5px solid #FFD700;
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  position: relative;
  counter-increment: step-counter;
}

.page-promo__claim-step::before {
  content: counter(step-counter);
  position: absolute;
  left: -25px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #FFD700;
  color: #000080;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8em;
  font-weight: 700;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-promo__step-title {
  font-size: 1.8em;
  color: #000080;
  margin-bottom: 10px;
  margin-left: 35px; /* Offset for the counter */
}

.page-promo__claim-step p {
  font-size: 1.1em;
  line-height: 1.6;
  color: #555555;
  margin-left: 35px;
}

.page-promo__claim-step a {
  color: #000080;
  text-decoration: underline;
  font-weight: 600;
}

.page-promo__claim-step a:hover {
  color: #FFD700;
}

.page-promo__cta-bottom {
  text-align: center;
  margin-top: 50px;
}

.page-promo__responsible-gaming {
  padding: 60px 0;
  background-color: #000080;
  color: #ffffff;
  text-align: center;
}

.page-promo__responsible-gaming .page-promo__section-title {
  color: #FFD700;
}

.page-promo__responsible-gaming .page-promo__section-intro {
  color: #f0f0f0;
  margin-bottom: 30px;
}

.page-promo__text-link {
  color: #FFD700;
  text-decoration: underline;
  font-size: 1.1em;
  font-weight: 600;
  transition: color 0.3s ease;
}

.page-promo__text-link:hover {
  color: #e6c200;
}

.page-promo__faq-section {
  padding: 60px 0;
}

.page-promo__faq-item {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
  padding: 25px;
}

.page-promo__faq-question {
  font-size: 1.5em;
  color: #000080;
  margin-bottom: 10px;
}

.page-promo__faq-answer {
  font-size: 1em;
  line-height: 1.6;
  color: #666666;
  display: none; /* Hidden by default for FAQ toggle */
}

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

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

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

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

@media (max-width: 768px) {
  .page-promo__hero-section {
    padding-top: var(--header-offset, 100px);
  }

  .page-promo__hero-container {
    padding: 60px 15px;
  }

  .page-promo__hero-title {
    font-size: 2.5em;
  }

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

  .page-promo__cta-button {
    padding: 12px 30px;
    font-size: 1.2em;
  }

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

  .page-promo__section-intro {
    font-size: 1em;
  }

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

  .page-promo__feature-icon {
    max-width: 100%; /* Ensure images in content area do not overflow */
    height: auto;
    width: 200px; /* Min size */
    height: 150px; /* Maintain aspect ratio */
  }

  .page-promo__promo-image {
    max-width: 100%; /* Ensure images in content area do not overflow */
    height: auto;
    height: 200px;
  }

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

  .page-promo__claim-step::before {
    left: 5px;
    top: 0;
    transform: translateY(0);
    font-size: 1.5em;
    width: 40px;
    height: 40px;
  }

  .page-promo__claim-step {
    padding-left: 60px;
    border-left: none;
    border-top: 5px solid #FFD700;
  }

  .page-promo__step-title,
  .page-promo__claim-step p {
    margin-left: 0;
  }

  /* Ensure all images within .page-promo are responsive and don't overflow */
  .page-promo img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Enforce minimum size for content images */
    min- /* Example, adjust as needed */
    object-fit: cover; /* or contain, depending on desired effect */
  }
}

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

  .page-promo__cta-button {
    font-size: 1em;
    padding: 10px 25px;
  }

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

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

  .page-promo__promo-title {
    font-size: 1.2em;
  }

  .page-promo__promo-button {
    padding: 10px 20px;
  }
}