.page-index-exclusive-promotions {
  color: #ffffff; /* Body background is dark (#0a0a0a), so text should be light */
  background-color: #0a0a0a;
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  padding-bottom: 60px;
}

.page-index-exclusive-promotions__highlight {
  color: #26A9E0;
  font-weight: bold;
}

.page-index-exclusive-promotions__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 80px 20px;
  padding-top: var(--header-offset, 120px); /* Ensures content is below fixed header */
  background-color: #0a0a0a; /* Dark background for hero */
}

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

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

.page-index-exclusive-promotions__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.page-index-exclusive-promotions__main-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFFFFF;
  line-height: 1.2;
}

.page-index-exclusive-promotions__intro-text {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #f0f0f0;
}

.page-index-exclusive-promotions__section {
  padding: 60px 20px;
  background-color: #0a0a0a;
}

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

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

.page-index-exclusive-promotions__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #26A9E0;
  margin: 15px auto 0;
}

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

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

.page-index-exclusive-promotions__promo-card {
  background-color: rgba(255, 255, 255, 0.08); /* Slightly lighter card background */
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #ffffff;
}

.page-index-exclusive-promotions__promo-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

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

.page-index-exclusive-promotions__card-title {
  font-size: 1.8em;
  color: #26A9E0;
  margin-bottom: 15px;
}

.page-index-exclusive-promotions__card-text {
  font-size: 1em;
  color: #f0f0f0;
  margin-bottom: 20px;
}

.page-index-exclusive-promotions__list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-index-exclusive-promotions__list-item {
  background-color: rgba(255, 255, 255, 0.05);
  margin-bottom: 10px;
  padding: 15px 20px;
  border-left: 5px solid #26A9E0;
  border-radius: 5px;
  color: #f0f0f0;
  font-size: 1.05em;
}

.page-index-exclusive-promotions__list-item strong {
  color: #FFFFFF;
}

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

.page-index-exclusive-promotions__step-card {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  color: #ffffff;
}

.page-index-exclusive-promotions__step-icon {
  font-size: 2.5em;
  color: #26A9E0;
  margin-bottom: 15px;
  font-weight: bold;
  background-color: rgba(38, 169, 224, 0.2);
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

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

.page-index-exclusive-promotions__step-text {
  font-size: 1em;
  color: #f0f0f0;
  margin-bottom: 20px;
}

.page-index-exclusive-promotions__faq-list {
  margin-top: 40px;
}

.page-index-exclusive-promotions__faq-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-index-exclusive-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.12);
  color: #FFFFFF;
  font-size: 1.2em;
  font-weight: bold;
  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-title {
  margin: 0;
  font-size: 1.2em;
  color: #FFFFFF;
}

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

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

.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 to contain content */
  padding: 15px 20px 20px;
}

.page-index-exclusive-promotions__cta-section {
  text-align: center;
  padding: 80px 20px;
  background-color: #0a0a0a;
}

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

.page-index-exclusive-promotions__btn-primary,
.page-index-exclusive-promotions__btn-secondary {
  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, color 0.3s ease, border-color 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-index-exclusive-promotions__btn-primary {
  background-color: #26A9E0;
  color: #FFFFFF;
  border: 2px solid #26A9E0;
}

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

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

.page-index-exclusive-promotions__btn-secondary:hover {
  background-color: #26A9E0;
  color: #FFFFFF;
}

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

@media (max-width: 768px) {
  .page-index-exclusive-promotions__hero-section {
    padding: 60px 15px;
    padding-top: var(--header-offset, 120px) !important;
  }
  .page-index-exclusive-promotions__main-title {
    font-size: 2.5em;
  }
  .page-index-exclusive-promotions__intro-text,
  .page-index-exclusive-promotions__text-block,
  .page-index-exclusive-promotions__list-item,
  .page-index-exclusive-promotions__card-text,
  .page-index-exclusive-promotions__step-text,
  .page-index-exclusive-promotions__faq-answer p {
    font-size: 1em;
  }
  .page-index-exclusive-promotions__section {
    padding: 40px 15px;
  }
  .page-index-exclusive-promotions__section-title {
    font-size: 1.8em;
  }
  .page-index-exclusive-promotions__promo-grid,
  .page-index-exclusive-promotions__steps-grid {
    grid-template-columns: 1fr;
  }
  .page-index-exclusive-promotions__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-index-exclusive-promotions__btn-primary,
  .page-index-exclusive-promotions__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  /* Mobile image responsiveness */
  .page-index-exclusive-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-index-exclusive-promotions__section,
  .page-index-exclusive-promotions__card,
  .page-index-exclusive-promotions__container,
  .page-index-exclusive-promotions__hero-section,
  .page-index-exclusive-promotions__cta-section,
  .page-index-exclusive-promotions__promo-card,
  .page-index-exclusive-promotions__step-card,
  .page-index-exclusive-promotions__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden !important;
  }
  .page-index-exclusive-promotions__faq-question {
    font-size: 1.1em;
  }
  .page-index-exclusive-promotions__faq-title {
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-index-exclusive-promotions__main-title {
    font-size: 2em;
  }
  .page-index-exclusive-promotions__section-title {
    font-size: 1.6em;
  }
  .page-index-exclusive-promotions__faq-question {
    padding: 15px;
  }
  .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;
  }
}