.page-index-latest-promotions {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f4f7f6;
}

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

.page-index-latest-promotions__hero-section {
  background: linear-gradient(135deg, #003366 0%, #004080 100%); /* Dark blue gradient */
  color: #fff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-index-latest-promotions__hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at top left, rgba(255, 204, 0, 0.1) 0%, transparent 70%); /* Subtle gold accent */
  z-index: 0;
}

.page-index-latest-promotions__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #fff;
  position: relative;
  z-index: 1;
}

.page-index-latest-promotions__highlight {
  color: #FFCC00; /* Auxiliary gold color */
}

.page-index-latest-promotions__hero-subtitle {
  font-size: 1.4em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0;
  position: relative;
  z-index: 1;
}

.page-index-latest-promotions__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  position: relative;
  z-index: 1;
}

.page-index-latest-promotions__btn--primary {
  background-color: #FFCC00; /* Auxiliary gold color */
  color: #003366; /* Main dark blue color for text */
}

.page-index-latest-promotions__btn--primary:hover {
  background-color: #e6b800;
  transform: translateY(-3px);
}

.page-index-latest-promotions__btn--secondary {
  background-color: #003366; /* Main dark blue color */
  color: #FFCC00; /* Auxiliary gold color for text */
  border: 2px solid #FFCC00;
  padding: 12px 25px;
  font-size: 1em;
}

.page-index-latest-promotions__btn--secondary:hover {
  background-color: #004d99;
  color: #fff;
  border-color: #fff;
  transform: translateY(-3px);
}

.page-index-latest-promotions__section-title {
  font-size: 2.5em;
  color: #003366; /* Main dark blue color */
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
  position: relative;
}

.page-index-latest-promotions__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFCC00; /* Auxiliary gold color */
  margin: 10px auto 0;
  border-radius: 2px;
}

.page-index-latest-promotions__section-description {
  font-size: 1.1em;
  color: #555;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px;
}

.page-index-latest-promotions__bold {
  font-weight: bold;
}

.page-index-latest-promotions__promotions-grid {
  padding: 80px 0;
  background-color: #fcfcfc;
}

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

.page-index-latest-promotions__promotion-card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-index-latest-promotions__promotion-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-index-latest-promotions__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 3px solid #FFCC00; /* Auxiliary gold accent */
}

.page-index-latest-promotions__card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-index-latest-promotions__card-title {
  font-size: 1.6em;
  color: #003366; /* Main dark blue color */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-index-latest-promotions__card-text {
  color: #666;
  margin-bottom: 20px;
  font-size: 0.95em;
}

.page-index-latest-promotions__card-features {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-index-latest-promotions__card-features li {
  margin-bottom: 8px;
  color: #444;
  font-size: 0.9em;
  position: relative;
  padding-left: 25px;
}

.page-index-latest-promotions__card-features li::before {
  content: '✔';
  color: #FFCC00; /* Auxiliary gold color */
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

.page-index-latest-promotions__how-to-claim {
  background-color: #e6f0f5; /* Lighter blue variant */
  padding: 80px 0;
}

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

.page-index-latest-promotions__step-card {
  background-color: #fff;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.page-index-latest-promotions__step-card:hover {
  transform: translateY(-5px);
}

.page-index-latest-promotions__step-number {
  display: inline-flex;
  width: 60px;
  height: 60px;
  background-color: #FFCC00; /* Auxiliary gold color */
  color: #003366; /* Main dark blue color */
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  font-size: 2.2em;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 3px 10px rgba(255, 204, 0, 0.4);
}

.page-index-latest-promotions__step-title {
  font-size: 1.5em;
  color: #003366; /* Main dark blue color */
  margin-bottom: 15px;
}

.page-index-latest-promotions__step-text {
  color: #666;
  font-size: 0.95em;
}

.page-index-latest-promotions__text-link {
  color: #003366;
  text-decoration: underline;
  font-weight: bold;
}

.page-index-latest-promotions__text-link:hover {
  color: #FFCC00;
}

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

.page-index-latest-promotions__why-choose {
  padding: 80px 0;
  background-color: #fcfcfc;
}

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

.page-index-latest-promotions__feature-item {
  text-align: center;
  padding: 30px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.page-index-latest-promotions__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 5px 10px rgba(0, 51, 102, 0.2)); /* Shadow for icons */
}

.page-index-latest-promotions__feature-title {
  font-size: 1.4em;
  color: #003366; /* Main dark blue color */
  margin-bottom: 10px;
}

.page-index-latest-promotions__feature-text {
  color: #666;
  font-size: 0.95em;
}

.page-index-latest-promotions__faq {
  padding: 80px 0;
  background-color: #e6f0f5;
}

.page-index-latest-promotions__faq-item {
  background-color: #fff;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
}

.page-index-latest-promotions__faq-question {
  font-size: 1.3em;
  color: #003366; /* Main dark blue color */
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-index-latest-promotions__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  color: #FFCC00;
  font-weight: bold;
}

.page-index-latest-promotions__faq-question.active::after {
  content: '-';
}

.page-index-latest-promotions__faq-answer {
  color: #666;
  font-size: 1em;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  padding-top: 0;
}

.page-index-latest-promotions__faq-answer.active {
  max-height: 200px; /* Adjust as needed */
  padding-top: 15px;
}

.page-index-latest-promotions__cta-final {
  background: linear-gradient(135deg, #003366 0%, #004d99 100%);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.page-index-latest-promotions__cta-final .page-index-latest-promotions__section-title {
  color: #fff;
}

.page-index-latest-promotions__cta-final .page-index-latest-promotions__section-title::after {
  background-color: #FFCC00;
}

.page-index-latest-promotions__cta-final .page-index-latest-promotions__section-description {
  color: #e0e0e0;
  margin-bottom: 40px;
}

.page-index-latest-promotions__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-index-latest-promotions__hero-title {
    font-size: 2.8em;
  }
  .page-index-latest-promotions__hero-subtitle {
    font-size: 1.2em;
  }
  .page-index-latest-promotions__section-title {
    font-size: 2em;
  }
  .page-index-latest-promotions__grid-wrapper, .page-index-latest-promotions__steps-grid, .page-index-latest-promotions__features-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-index-latest-promotions__hero-section {
    padding: 80px 0;
  }
  .page-index-latest-promotions__hero-title {
    font-size: 2.2em;
  }
  .page-index-latest-promotions__hero-subtitle {
    font-size: 1em;
  }
  .page-index-latest-promotions__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-index-latest-promotions__section-title {
    font-size: 1.8em;
  }
  .page-index-latest-promotions__section-description {
    font-size: 0.95em;
  }
  .page-index-latest-promotions__card-title {
    font-size: 1.4em;
  }
  .page-index-latest-promotions__step-number {
    width: 50px;
    height: 50px;
    font-size: 1.8em;
  }
  .page-index-latest-promotions__step-title {
    font-size: 1.3em;
  }
  .page-index-latest-promotions__feature-icon {
    width: 70px;
    height: 70px;
  }
  .page-index-latest-promotions__faq-question {
    font-size: 1.1em;
  }
  .page-index-latest-promotions__faq-answer {
    font-size: 0.9em;
  }
}

@media (max-width: 480px) {
  .page-index-latest-promotions__hero-section {
    padding: 60px 0;
  }
  .page-index-latest-promotions__hero-title {
    font-size: 1.8em;
  }
  .page-index-latest-promotions__hero-subtitle {
    font-size: 0.9em;
  }
  .page-index-latest-promotions__btn {
    width: 100%;
    margin-bottom: 15px;
  }
  .page-index-latest-promotions__cta-buttons {
    flex-direction: column;
  }
  .page-index-latest-promotions__grid-wrapper, .page-index-latest-promotions__steps-grid, .page-index-latest-promotions__features-grid {
    grid-template-columns: 1fr;
  }
  .page-index-latest-promotions__section-title {
    font-size: 1.5em;
  }
  .page-index-latest-promotions__section-description {
    font-size: 0.85em;
  }
  .page-index-latest-promotions__card-title {
    font-size: 1.2em;
  }
  .page-index-latest-promotions__step-title {
    font-size: 1.1em;
  }
  .page-index-latest-promotions__feature-title {
    font-size: 1.1em;
  }
  .page-index-latest-promotions__faq-question {
    font-size: 1em;
  }
}