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

.page-index-exclusive-promotions__hero-section {
  position: relative;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
  background-color: #000000; /* Dark background for hero text contrast */
  color: #FFFFFF;
  text-align: center;
  overflow: hidden;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.page-index-exclusive-promotions__hero-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-index-exclusive-promotions__hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
}

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

.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;
}

.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;
  white-space: nowrap;
}

.page-index-exclusive-promotions__btn--primary {
  background-color: #FCBC45; /* Login color for primary action */
  color: #000000; /* Dark text for FCBC45 background */
  border: 2px solid #FCBC45;
}

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

.page-index-exclusive-promotions__btn--secondary {
  background-color: #000000; /* Main color */
  color: #FFFFFF; /* Register color for secondary action */
  border: 2px solid #FCBC45; /* Login color for border */
}

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

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

.page-index-exclusive-promotions__btn--large {
  padding: 18px 35px;
  font-size: 1.2em;
}

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

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

.page-index-exclusive-promotions__section-intro {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #555555;
}

.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: #FFFFFF;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-exclusive-promotions__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

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

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

.page-index-exclusive-promotions__promo-description {
  font-size: 1em;
  color: #666666;
  margin-bottom: 25px;
}

.page-index-exclusive-promotions__how-to-claim {
  background-color: #f9f9f9;
  padding: 60px 20px;
  margin: 60px auto;
  border-radius: 15px;
}

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

.page-index-exclusive-promotions__step-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  position: relative;
  padding-left: 60px; /* Space for the counter */
}

.page-index-exclusive-promotions__step-item::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  background-color: #FCBC45;
  color: #000000;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  font-weight: bold;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

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

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

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

.page-index-exclusive-promotions__terms-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.page-index-exclusive-promotions__terms-item {
  background-color: #FFFFFF;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.page-index-exclusive-promotions__terms-subtitle {
  font-size: 1.3em;
  color: #000000;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-index-exclusive-promotions__terms-description {
  color: #666666;
  font-size: 0.95em;
}

.page-index-exclusive-promotions__terms-footer {
  text-align: center;
  margin-top: 40px;
  font-size: 1em;
  color: #555555;
}

.page-index-exclusive-promotions__terms-cta {
  text-align: center;
  margin-top: 30px;
}

.page-index-exclusive-promotions__why-jilicc {
  background-color: #f9f9f9;
  padding: 60px 20px;
  margin: 60px auto;
  border-radius: 15px;
}

.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-card {
  background-color: #FFFFFF;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-exclusive-promotions__feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.page-index-exclusive-promotions__feature-icon {
  width: 250px; /* Enforce min 200px */
  height: 167px; /* Enforce min 200px on height */
  object-fit: cover;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
  border-radius: 8px;
}

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

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

.page-index-exclusive-promotions__faq {
  margin-bottom: 80px;
}

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

.page-index-exclusive-promotions__faq-item {
  background-color: #FFFFFF;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  margin-bottom: 15px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.page-index-exclusive-promotions__faq-question {
  font-size: 1.2em;
  color: #000000;
  margin-top: 0;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-index-exclusive-promotions__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-index-exclusive-promotions__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-index-exclusive-promotions__faq-answer {
  font-size: 1em;
  color: #666666;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.page-index-exclusive-promotions__faq-answer.open {
  max-height: 200px; /* Adjust as needed */
  overflow: visible;
}

.page-index-exclusive-promotions__final-cta {
  background-color: #000000;
  color: #FFFFFF;
  padding: 80px 20px;
  text-align: center;
  border-radius: 15px;
  margin-bottom: 80px;
}

.page-index-exclusive-promotions__final-cta-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: #FFFFFF;
}

.page-index-exclusive-promotions__final-cta-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #F0F0F0;
}

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

@media (max-width: 768px) {
  .page-index-exclusive-promotions__hero-section {
    padding-top: var(--header-offset, 120px);
  }
  .page-index-exclusive-promotions__hero-title {
    font-size: 2.5em;
  }
  .page-index-exclusive-promotions__hero-description {
    font-size: 1.1em;
  }
  .page-index-exclusive-promotions__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-index-exclusive-promotions__btn {
    width: 100%;
    max-width: 300px;
  }
  .page-index-exclusive-promotions__section {
    margin: 40px auto;
    padding: 0 15px;
  }
  .page-index-exclusive-promotions__section-title {
    font-size: 1.8em;
  }
  .page-index-exclusive-promotions__promo-grid,
  .page-index-exclusive-promotions__terms-list,
  .page-index-exclusive-promotions__features-grid {
    grid-template-columns: 1fr;
  }
  .page-index-exclusive-promotions__step-item {
    padding-left: 50px;
  }
  .page-index-exclusive-promotions__step-item::before {
    width: 35px;
    height: 35px;
    font-size: 1.3em;
  }
  .page-index-exclusive-promotions__step-title {
    font-size: 1.2em;
  }
  .page-index-exclusive-promotions__final-cta {
    padding: 50px 15px;
  }
  .page-index-exclusive-promotions__final-cta-title {
    font-size: 2em;
  }
  .page-index-exclusive-promotions__final-cta-description {
    font-size: 1em;
  }

  /* Mobile content area image constraint */
  .page-index-exclusive-promotions img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-index-exclusive-promotions__hero-title {
    font-size: 2em;
  }
  .page-index-exclusive-promotions__hero-description {
    font-size: 1em;
  }
  .page-index-exclusive-promotions__section-title {
    font-size: 1.5em;
  }
  .page-index-exclusive-promotions__final-cta-title {
    font-size: 1.8em;
  }
}