.page-index-exclusive-promotions {
  color: #333333;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensures content starts below fixed header */
}

.page-index-exclusive-promotions__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #0A2463; /* Fallback for image loading */
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

.page-index-exclusive-promotions__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.7;
}

.page-index-exclusive-promotions__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #ffffff;
  max-width: 900px;
  padding: 40px 20px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 10px;
}

.page-index-exclusive-promotions__main-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
  font-weight: bold;
}

.page-index-exclusive-promotions__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-index-exclusive-promotions__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-index-exclusive-promotions__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;
  text-align: center;
}

.page-index-exclusive-promotions__btn--primary {
  background-color: #FFD700;
  color: #0A2463;
  border: 2px solid #FFD700;
}

.page-index-exclusive-promotions__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-index-exclusive-promotions__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-index-exclusive-promotions__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A2463;
  transform: translateY(-2px);
}

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

.page-index-exclusive-promotions__introduction-section,
.page-index-exclusive-promotions__promo-grid-section,
.page-index-exclusive-promotions__how-to-claim-section,
.page-index-exclusive-promotions__why-choose-section,
.page-index-exclusive-promotions__responsible-gaming-section {
  padding: 60px 0;
  background-color: #f9f9f9;
  border-bottom: 1px solid #eeeeee;
}

.page-index-exclusive-promotions__introduction-section {
  background-color: #ffffff;
}

.page-index-exclusive-promotions__section-title {
  font-size: 2.5em;
  color: #0A2463;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-index-exclusive-promotions__section-subtitle {
  font-size: 1.2em;
  color: #555555;
  text-align: center;
  margin-bottom: 40px;
}

.page-index-exclusive-promotions__text-content {
  font-size: 1.1em;
  color: #333333;
  margin-bottom: 20px;
  text-align: justify;
}

.page-index-exclusive-promotions__text-content a {
  color: #0A2463;
  text-decoration: underline;
}

.page-index-exclusive-promotions__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-index-exclusive-promotions__promo-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-index-exclusive-promotions__promo-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  margin-bottom: 20px;
}

.page-index-exclusive-promotions__card-title {
  font-size: 1.8em;
  color: #0A2463;
  margin-bottom: 15px;
  padding: 0 20px;
}

.page-index-exclusive-promotions__card-description {
  font-size: 1em;
  color: #555555;
  margin-bottom: 25px;
  padding: 0 20px;
  flex-grow: 1;
  text-align: justify;
}

.page-index-exclusive-promotions__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
}

.page-index-exclusive-promotions__how-to-claim-section {
  background-color: #f0f5f8; /* Lighter background for steps */
}

.page-index-exclusive-promotions__steps-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.page-index-exclusive-promotions__step-item {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  position: relative;
}

.page-index-exclusive-promotions__step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: #0A2463;
  color: #FFD700;
  border-radius: 50%;
  font-size: 1.8em;
  font-weight: bold;
  margin: -55px auto 20px auto;
  border: 3px solid #FFD700;
  position: relative;
  z-index: 1;
}

.page-index-exclusive-promotions__step-title {
  font-size: 1.5em;
  color: #0A2463;
  margin-bottom: 10px;
}

.page-index-exclusive-promotions__step-description {
  font-size: 1em;
  color: #555555;
}

.page-index-exclusive-promotions__step-description a {
  color: #0A2463;
  text-decoration: underline;
}

.page-index-exclusive-promotions__cta-bottom {
  text-align: center;
  margin-top: 50px;
}

.page-index-exclusive-promotions__why-choose-section {
  background-color: #ffffff;
}

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

.page-index-exclusive-promotions__feature-item {
  text-align: center;
  background-color: #fefefe;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.page-index-exclusive-promotions__feature-icon {
  width: 200px;
  height: 150px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-index-exclusive-promotions__feature-title {
  font-size: 1.6em;
  color: #0A2463;
  margin-bottom: 15px;
}

.page-index-exclusive-promotions__feature-description {
  font-size: 1em;
  color: #555555;
  text-align: justify;
}

.page-index-exclusive-promotions__responsible-gaming-section {
  background-color: #f0f0f0;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-index-exclusive-promotions__main-title {
    font-size: 2.8em;
  }
  .page-index-exclusive-promotions__hero-description {
    font-size: 1.2em;
  }
  .page-index-exclusive-promotions__section-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-index-exclusive-promotions__hero-section {
    min-height: 400px;
  }
  .page-index-exclusive-promotions__main-title {
    font-size: 2.2em;
  }
  .page-index-exclusive-promotions__hero-description {
    font-size: 1em;
  }
  .page-index-exclusive-promotions__hero-actions {
    flex-direction: column;
  }
  .page-index-exclusive-promotions__btn {
    width: 80%;
  }
  .page-index-exclusive-promotions__section-title {
    font-size: 1.8em;
  }
  .page-index-exclusive-promotions__section-subtitle {
    font-size: 1em;
  }
  .page-index-exclusive-promotions__text-content,
  .page-index-exclusive-promotions__card-description,
  .page-index-exclusive-promotions__step-description,
  .page-index-exclusive-promotions__feature-description {
    font-size: 0.95em;
  }
  .page-index-exclusive-promotions__promo-image {
    height: 200px;
  }
  .page-index-exclusive-promotions__promo-card,
  .page-index-exclusive-promotions__step-item,
  .page-index-exclusive-promotions__feature-item {
    padding: 20px;
  }
  .page-index-exclusive-promotions__step-number {
    width: 40px;
    height: 40px;
    font-size: 1.5em;
    margin-top: -45px;
  }
  /* Mobile image overflow prevention */
  .page-index-exclusive-promotions img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-index-exclusive-promotions__main-title {
    font-size: 1.8em;
  }
  .page-index-exclusive-promotions__btn {
    width: 95%;
    padding: 12px 20px;
  }
  .page-index-exclusive-promotions__container {
    padding: 20px 15px;
  }
  .page-index-exclusive-promotions__section-title {
    font-size: 1.6em;
  }
  .page-index-exclusive-promotions__promo-image {
    height: 180px;
  }
  .page-index-exclusive-promotions__card-title {
    font-size: 1.5em;
  }
  .page-index-exclusive-promotions__step-title {
    font-size: 1.3em;
  }
  .page-index-exclusive-promotions__feature-title {
    font-size: 1.4em;
  }
}