.page-index-exclusive-promotions {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light backgrounds */
  background-color: #f8f8f8;
}

.page-index-exclusive-promotions__hero-section {
  position: relative;
  padding: 100px 20px 60px; /* Adjusted padding-top for header offset */
  background: linear-gradient(135deg, #003366, #0055a4); /* Dark blue gradient */
  color: #ffffff;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  padding-top: var(--header-offset, 120px); /* Ensure header offset for desktop */
}

.page-index-exclusive-promotions__hero-content {
  max-width: 900px;
  margin-bottom: 40px;
  z-index: 1;
}

.page-index-exclusive-promotions__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-index-exclusive-promotions__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  line-height: 1.8;
}

.page-index-exclusive-promotions__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.page-index-exclusive-promotions__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

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

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

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

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

.page-index-exclusive-promotions__introduction-section {
  padding: 60px 0;
  background-color: #ffffff;
  color: #333333;
}

.page-index-exclusive-promotions__promo-types-section {
  padding: 60px 0;
  background-color: #003366;
  color: #ffffff;
}

.page-index-exclusive-promotions__promo-types-section .page-index-exclusive-promotions__section-title {
  color: #ffffff;
}

.page-index-exclusive-promotions__promo-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 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  color: #333333;
}

.page-index-exclusive-promotions__card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.page-index-exclusive-promotions__card-title {
  font-size: 1.5em;
  color: #003366;
  margin: 20px 20px 10px;
}

.page-index-exclusive-promotions__card-text {
  padding: 0 20px 20px;
  flex-grow: 1;
}

.page-index-exclusive-promotions__btn-primary,
.page-index-exclusive-promotions__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box;
}

.page-index-exclusive-promotions__btn-primary {
  background-color: #FFD700;
  color: #003366;
  border: 2px solid #FFD700;
  margin-right: 15px;
}

.page-index-exclusive-promotions__btn-primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
}

.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: #003366;
}

.page-index-exclusive-promotions__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
}

.page-index-exclusive-promotions__cta-buttons--center {
  margin-top: 40px;
}

.page-index-exclusive-promotions__promo-card .page-index-exclusive-promotions__btn-secondary {
  margin: 0 20px 20px;
  width: calc(100% - 40px);
}

.page-index-exclusive-promotions__how-to-get-section {
  padding: 60px 0;
  background-color: #f8f8f8;
  color: #333333;
}

.page-index-exclusive-promotions__steps-list {
  list-style: none;
  padding: 0;
  counter-reset: step-counter;
}

.page-index-exclusive-promotions__step-item {
  background-color: #ffffff;
  margin-bottom: 20px;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: relative;
  padding-left: 80px;
}

.page-index-exclusive-promotions__step-item::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  position: absolute;
  left: 20px;
  top: 30px;
  width: 40px;
  height: 40px;
  background-color: #003366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  font-weight: bold;
}

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

.page-index-exclusive-promotions__step-description {
  font-size: 1.1em;
}

.page-index-exclusive-promotions__terms-section {
  padding: 60px 0;
  background-color: #003366;
  color: #ffffff;
}

.page-index-exclusive-promotions__terms-section .page-index-exclusive-promotions__section-title {
  color: #ffffff;
}

.page-index-exclusive-promotions__terms-list {
  list-style: none;
  padding: 0;
}

.page-index-exclusive-promotions__term-item {
  background-color: rgba(255, 255, 255, 0.1);
  margin-bottom: 15px;
  padding: 25px;
  border-radius: 8px;
}

.page-index-exclusive-promotions__term-title {
  color: #FFD700;
  font-size: 1.6em;
  margin-bottom: 10px;
}

.page-index-exclusive-promotions__term-description {
  font-size: 1.05em;
}

.page-index-exclusive-promotions__why-choose-section {
  padding: 60px 0;
  background-color: #ffffff;
  color: #333333;
}

.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 {
  background-color: #f8f8f8;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 30px;
  text-align: center;
}

.page-index-exclusive-promotions__feature-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

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

.page-index-exclusive-promotions__feature-description {
  font-size: 1.05em;
}

.page-index-exclusive-promotions__faq-section {
  padding: 60px 0;
  background-color: #003366;
  color: #ffffff;
}

.page-index-exclusive-promotions__faq-section .page-index-exclusive-promotions__section-title {
  color: #ffffff;
}

.page-index-exclusive-promotions__faq-list {
  max-width: 900px;
  margin: 40px auto 0;
}

.page-index-exclusive-promotions__faq-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

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

.page-index-exclusive-promotions__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.page-index-exclusive-promotions__faq-question h3 {
  margin: 0;
  color: #ffffff;
}

.page-index-exclusive-promotions__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-index-exclusive-promotions__faq-item.active .page-index-exclusive-promotions__faq-toggle {
  transform: rotate(45deg);
}

.page-index-exclusive-promotions__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #f0f0f0;
}

.page-index-exclusive-promotions__faq-item.active .page-index-exclusive-promotions__faq-answer {
  max-height: 1000px !important; /* Sufficiently large value */
  padding: 15px 20px 20px;
}

.page-index-exclusive-promotions__conclusion-section {
  padding: 60px 0;
  background-color: #003366;
  color: #ffffff;
  text-align: center;
}

.page-index-exclusive-promotions__conclusion-section .page-index-exclusive-promotions__section-title {
  color: #ffffff;
}

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

@media (max-width: 768px) {
  .page-index-exclusive-promotions__hero-section {
    padding: 80px 15px 40px; /* Adjusted padding-top for header offset */
    min-height: 450px;
    padding-top: var(--header-offset, 120px) !important; /* Mobile header offset */
  }
  .page-index-exclusive-promotions__hero-title {
    font-size: 2.5em;
  }
  .page-index-exclusive-promotions__hero-description {
    font-size: 1em;
  }
  .page-index-exclusive-promotions__section-title {
    font-size: 1.8em;
  }
  .page-index-exclusive-promotions__text-block,
  .page-index-exclusive-promotions__step-description,
  .page-index-exclusive-promotions__term-description,
  .page-index-exclusive-promotions__feature-description {
    font-size: 1em;
  }
  .page-index-exclusive-promotions__promo-grid,
  .page-index-exclusive-promotions__features-grid {
    grid-template-columns: 1fr;
  }
  .page-index-exclusive-promotions__step-item {
    padding: 20px 20px 20px 60px;
  }
  .page-index-exclusive-promotions__step-item::before {
    left: 15px;
    top: 20px;
    width: 35px;
    height: 35px;
    font-size: 1.2em;
  }
  .page-index-exclusive-promotions__step-title {
    font-size: 1.5em;
  }
  .page-index-exclusive-promotions__faq-question {
    font-size: 1.1em;
  }
  .page-index-exclusive-promotions__faq-answer {
    padding: 0 15px;
  }
  .page-index-exclusive-promotions__faq-item.active .page-index-exclusive-promotions__faq-answer {
    padding: 10px 15px 15px;
  }

  /* Mobile image responsiveness */
  .page-index-exclusive-promotions img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-index-exclusive-promotions__hero-image-wrapper,
  .page-index-exclusive-promotions__container,
  .page-index-exclusive-promotions__promo-card,
  .page-index-exclusive-promotions__step-item,
  .page-index-exclusive-promotions__term-item,
  .page-index-exclusive-promotions__feature-item,
  .page-index-exclusive-promotions__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-index-exclusive-promotions__hero-section,
  .page-index-exclusive-promotions__introduction-section,
  .page-index-exclusive-promotions__promo-types-section,
  .page-index-exclusive-promotions__how-to-get-section,
  .page-index-exclusive-promotions__terms-section,
  .page-index-exclusive-promotions__why-choose-section,
  .page-index-exclusive-promotions__faq-section,
  .page-index-exclusive-promotions__conclusion-section {
    padding-left: 0;
    padding-right: 0;
  }

  /* Mobile button responsiveness */
  .page-index-exclusive-promotions__cta-buttons {
    flex-direction: column;
    gap: 10px;
  }
  .page-index-exclusive-promotions__btn-primary,
  .page-index-exclusive-promotions__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    margin-right: 0 !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-index-exclusive-promotions__promo-card .page-index-exclusive-promotions__btn-secondary {
    margin: 0 auto 20px;
    width: calc(100% - 30px) !important; /* Adjusted for card padding */
  }
}

/* Color Contrast Adjustments (if body background is light, use dark text) */
.page-index-exclusive-promotions {
  color: #333333; /* Default text color for light backgrounds */
}

.page-index-exclusive-promotions__dark-bg {
  color: #ffffff; /* Dark background with light text */
}

.page-index-exclusive-promotions__light-bg {
  color: #333333; /* Light background with dark text */
}

.page-index-exclusive-promotions__promo-card {
  background: #ffffff;
  color: #333333;
}

.page-index-exclusive-promotions__promo-card .page-index-exclusive-promotions__card-title {
  color: #003366;
}

.page-index-exclusive-promotions__step-item {
  background-color: #ffffff;
}

.page-index-exclusive-promotions__feature-item {
  background-color: #f8f8f8;
}

.page-index-exclusive-promotions__faq-item {
  background-color: rgba(255, 255, 255, 0.1);
}

.page-index-exclusive-promotions__btn-primary {
  background: #FFD700;
  color: #003366;
}

.page-index-exclusive-promotions__btn-primary:hover {
  background: #e6c200;
  color: #003366;
}

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

.page-index-exclusive-promotions__btn-secondary:hover {
  background: #FFD700;
  color: #003366;
}