.page-index-exclusive-promotions {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #E0E0E0; /* Light text for dark background, WCAG AA contrast with #0A1931 */
  background-color: #0A1931; /* Primary dark background */
}

.page-index-exclusive-promotions h1, .page-index-exclusive-promotions h2, .page-index-exclusive-promotions h3 {
  color: #FFC107; /* Accent color for headings, WCAG AA contrast with #0A1931 */
  text-align: center;
  margin-bottom: 1.5em;
}

.page-index-exclusive-promotions h1 {
  font-size: 2.8em;
  margin-bottom: 0.8em;
}

.page-index-exclusive-promotions h2 {
  font-size: 2.2em;
  padding-top: 1em;
  padding-bottom: 0.5em;
}

.page-index-exclusive-promotions h3 {
  font-size: 1.8em;
  margin-bottom: 0.7em;
  color: #E0E0E0; /* Slightly lighter for sub-headings, WCAG AA contrast with #0A1931 */
}

.page-index-exclusive-promotions p {
  margin-bottom: 1em;
  font-size: 1.1em;
  color: #B0B0B0; /* Slightly desaturated light text, WCAG AA contrast with #0A1931 */
}

.page-index-exclusive-promotions ul {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 1.5em;
}

.page-index-exclusive-promotions ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 0.5em;
  color: #B0B0B0; /* WCAG AA contrast with #0A1931 */
}

.page-index-exclusive-promotions ul li::before {
  content: '✔';
  color: #FFC107; /* Accent color for list bullet */
  position: absolute;
  left: 0;
}

.page-index-exclusive-promotions__btn {
  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;
  font-size: 1.1em;
  cursor: pointer;
  border: none;
  text-align: center;
}

.page-index-exclusive-promotions__btn--primary {
  background-color: #FFC107; /* Accent color */
  color: #0A1931; /* Primary dark color for text, WCAG AA contrast with #FFC107 */
}

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

.page-index-exclusive-promotions__btn--secondary {
  background-color: transparent;
  color: #FFC107; /* Accent color for text */
  border: 2px solid #FFC107;
  margin-left: 15px;
}

.page-index-exclusive-promotions__btn--secondary:hover {
  background-color: #FFC107;
  color: #0A1931;
}

.page-index-exclusive-promotions__btn--small {
    padding: 8px 15px;
    font-size: 0.95em;
    margin-top: 10px;
}

.page-index-exclusive-promotions__hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 80px 5%;
  background: linear-gradient(135deg, #0A1931 0%, #2a3d5f 100%);
  gap: 40px;
}

.page-index-exclusive-promotions__hero-content {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  text-align: left;
}

.page-index-exclusive-promotions__hero-title {
  font-size: 3.5em;
  text-align: left;
  color: #FFC107;
  margin-bottom: 0.5em;
}

.page-index-exclusive-promotions__hero-description {
  font-size: 1.2em;
  line-height: 1.8;
  margin-bottom: 2em;
  color: #E0E0E0;
}

.page-index-exclusive-promotions__hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.page-index-exclusive-promotions__hero-image-wrapper {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
}

.page-index-exclusive-promotions__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.page-index-exclusive-promotions__section {
  padding: 60px 5%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.page-index-exclusive-promotions__section-title {
  margin-bottom: 2em;
  color: #FFC107;
}

.page-index-exclusive-promotions__why-choose {
  background-color: #1a2a47; /* Slightly lighter dark background, WCAG AA contrast for text */
}

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

.page-index-exclusive-promotions__feature-item {
  background-color: #0A1931;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  border: 1px solid #FFC10730;
}

.page-index-exclusive-promotions__feature-item h3 {
  color: #FFC107;
  margin-top: 15px;
  font-size: 1.5em;
}

.page-index-exclusive-promotions__feature-item p {
  color: #B0B0B0;
  font-size: 1em;
}

.page-index-exclusive-promotions__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
}

.page-index-exclusive-promotions__promo-types {
  background-color: #0A1931;
}

.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: #1a2a47;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: left;
  display: flex;
  flex-direction: column;
  border: 1px solid #FFC10730;
}

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

.page-index-exclusive-promotions__promo-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-index-exclusive-promotions__promo-content h3 {
  color: #FFC107;
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 1.6em;
  text-align: left;
}

.page-index-exclusive-promotions__promo-content p {
  color: #B0B0B0;
  flex-grow: 1;
}

.page-index-exclusive-promotions__promo-content ul {
  margin-top: 15px;
  margin-bottom: 20px;
}

.page-index-exclusive-promotions__promo-content ul li {
  color: #E0E0E0;
}

.page-index-exclusive-promotions__promo-content .page-index-exclusive-promotions__btn {
  margin-top: 20px;
  width: 100%;
}

.page-index-exclusive-promotions__how-to-claim {
  background-color: #1a2a47;
}

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

.page-index-exclusive-promotions__step-item {
  background-color: #0A1931;
  padding: 30px;
  border-radius: 10px;
  text-align: left;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #FFC10730;
}

.page-index-exclusive-promotions__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #FFC107;
  color: #0A1931;
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 15px;
}

.page-index-exclusive-promotions__step-item h3 {
  color: #FFC107;
  text-align: left;
  margin-bottom: 10px;
}

.page-index-exclusive-promotions__step-item p {
  color: #B0B0B0;
  font-size: 1em;
}

.page-index-exclusive-promotions__terms-conditions {
  background-color: #0A1931;
  text-align: left;
}

.page-index-exclusive-promotions__terms-conditions h2 {
  text-align: center;
}

.page-index-exclusive-promotions__terms-conditions p {
  margin-bottom: 20px;
}

.page-index-exclusive-promotions__terms-list {
  list-style-type: disc;
  padding-left: 20px;
  color: #B0B0B0;
}

.page-index-exclusive-promotions__terms-list li {
  margin-bottom: 10px;
  color: #B0B0B0;
}

.page-index-exclusive-promotions__terms-list li::before {
    content: none;
}

.page-index-exclusive-promotions__terms-list strong {
  color: #FFC107;
}

.page-index-exclusive-promotions__terms-conditions .page-index-exclusive-promotions__btn {
    margin-top: 30px;
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.page-index-exclusive-promotions__faq {
  background-color: #1a2a47;
}

.page-index-exclusive-promotions__faq-accordion {
  margin-top: 30px;
  text-align: left;
}

.page-index-exclusive-promotions__accordion-item {
  background-color: #0A1931;
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #FFC10730;
}

.page-index-exclusive-promotions__accordion-header {
  width: 100%;
  background-color: #0A1931;
  color: #FFC107;
  padding: 20px 25px;
  border: none;
  text-align: left;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.page-index-exclusive-promotions__accordion-header::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

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

.page-index-exclusive-promotions__accordion-content {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  background-color: #1a2a47;
}

.page-index-exclusive-promotions__accordion-content.active {
  max-height: 300px; /* Adjust based on content */
  padding: 20px 25px;
}

.page-index-exclusive-promotions__accordion-content p {
  color: #B0B0B0;
  margin-bottom: 15px;
}

.page-index-exclusive-promotions__cta-final {
  background: linear-gradient(90deg, #0A1931 0%, #2a3d5f 100%);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 80px 5%;
  text-align: left;
}

.page-index-exclusive-promotions__cta-content {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
}

.page-index-exclusive-promotions__cta-title {
  font-size: 2.5em;
  text-align: left;
  color: #FFC107;
  margin-bottom: 0.5em;
}

.page-index-exclusive-promotions__cta-description {
  font-size: 1.2em;
  line-height: 1.8;
  margin-bottom: 2em;
  color: #E0E0E0;
}

.page-index-exclusive-promotions__cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.page-index-exclusive-promotions__cta-image {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-index-exclusive-promotions__hero, .page-index-exclusive-promotions__cta-final {
    flex-direction: column;
    text-align: center;
  }

  .page-index-exclusive-promotions__hero-content, .page-index-exclusive-promotions__cta-content {
    text-align: center;
  }

  .page-index-exclusive-promotions__hero-title, .page-index-exclusive-promotions__cta-title {
    font-size: 2.5em;
    text-align: center;
  }

  .page-index-exclusive-promotions__hero-actions, .page-index-exclusive-promotions__cta-actions {
    justify-content: center;
  }

  .page-index-exclusive-promotions__btn--secondary {
    margin-left: 0;
  }
}

@media (max-width: 768px) {
  .page-index-exclusive-promotions h1 {
    font-size: 2.2em;
  }

  .page-index-exclusive-promotions h2 {
    font-size: 1.8em;
  }

  .page-index-exclusive-promotions h3 {
    font-size: 1.4em;
  }

  .page-index-exclusive-promotions__hero, .page-index-exclusive-promotions__section, .page-index-exclusive-promotions__cta-final {
    padding: 40px 3%;
  }

  .page-index-exclusive-promotions__hero-description, .page-index-exclusive-promotions__cta-description {
    font-size: 1em;
  }

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

  .page-index-exclusive-promotions__promo-image {
    height: 150px;
  }
}

@media (max-width: 480px) {
  .page-index-exclusive-promotions__hero-actions, .page-index-exclusive-promotions__cta-actions {
    flex-direction: column;
    gap: 10px;
  }

  .page-index-exclusive-promotions__btn--secondary {
    margin-top: 0;
  }

  .page-index-exclusive-promotions__accordion-header {
    font-size: 1em;
    padding: 15px 20px;
  }

  .page-index-exclusive-promotions__accordion-content {
    padding: 15px 20px;
  }
}