.page-index-latest-promotions {
  font-family: 'Arial', sans-serif;
  color: #e0e0e0;
  background-color: #0d1e3d; /* Slightly darker than main for contrast */
}

.page-index-latest-promotions__hero-section {
  background: linear-gradient(135deg, #003366, #1a4f8a); /* Dark blue gradient */
  padding: 80px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  position: relative;
  overflow: hidden;
  border-bottom: 5px solid #FFCC00;
}

.page-index-latest-promotions__hero-content {
  max-width: 900px;
  z-index: 1;
}

.page-index-latest-promotions__hero-title {
  font-size: 3.5em;
  color: #FFCC00; /* Gold for highlight */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-weight: bold;
}

.page-index-latest-promotions__hero-subtitle {
  font-size: 1.3em;
  color: #ffffff;
  margin-bottom: 30px;
  line-height: 1.6;
}

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

.page-index-latest-promotions__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(50%) blur(5px);
  transform: scale(1.1);
}

.page-index-latest-promotions__cta-button {
  display: inline-block;
  background-color: #FFCC00; /* Auxiliary color */
  color: #003366; /* Main color for text on auxiliary background */
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: all 0.3s ease;
  border: 2px solid #FFCC00;
  box-shadow: 0 5px 15px rgba(255, 204, 0, 0.4);
}

.page-index-latest-promotions__cta-button:hover {
  background-color: #e6b800; /* Slightly darker gold */
  color: #002244; /* Slightly darker blue */
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 20px rgba(255, 204, 0, 0.6);
}

.page-index-latest-promotions__small-cta {
  padding: 10px 20px;
  font-size: 1em;
}

.page-index-latest-promotions__section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-index-latest-promotions__section:nth-of-type(even) {
  background-color: #1a4f8a; /* Lighter blue for alternating sections */
}

.page-index-latest-promotions__section-title {
  font-size: 2.8em;
  color: #FFCC00; /* Gold for main titles */
  margin-bottom: 25px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  font-weight: bold;
}

.page-index-latest-promotions__section-description {
  font-size: 1.1em;
  color: #c0c0c0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.page-index-latest-promotions__promotion-card {
  background-color: #003366; /* Main color for cards */
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  text-align: left;
  border: 1px solid #004488;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-index-latest-promotions__card-title {
  font-size: 1.8em;
  color: #FFCC00; /* Gold for card titles */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-index-latest-promotions__card-text {
  font-size: 1em;
  color: #d0d0d0;
  line-height: 1.6;
  margin-bottom: 20px;
}

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

.page-index-latest-promotions__card-list li {
  color: #b0b0b0;
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.page-index-latest-promotions__card-list li::before {
  content: '✓';
  color: #FFCC00; /* Gold checkmark */
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-index-latest-promotions__card-button {
  display: inline-block;
  background-color: #FFCC00; /* Auxiliary color */
  color: #003366; /* Main color for text */
  padding: 10px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 1em;
  font-weight: bold;
  transition: all 0.3s ease;
  border: 1px solid #FFCC00;
}

.page-index-latest-promotions__card-button:hover {
  background-color: #e6b800;
  color: #002244;
  transform: translateY(-2px);
}

.page-index-latest-promotions__section-image {
  width: 100%;
  max-width: 700px;
  margin-top: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  object-fit: cover;
}

.page-index-latest-promotions__steps-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.page-index-latest-promotions__step-card {
  background-color: #003366;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  text-align: center;
  flex: 1 1 300px;
  max-width: 350px;
  border: 1px solid #004488;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-latest-promotions__step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.6);
}

.page-index-latest-promotions__step-icon {
  font-size: 3em;
  color: #FFCC00;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-index-latest-promotions__step-title {
  font-size: 1.6em;
  color: #ffffff;
  margin-bottom: 15px;
}

.page-index-latest-promotions__step-text {
  font-size: 0.95em;
  color: #d0d0d0;
  line-height: 1.6;
  margin-bottom: 25px;
}

.page-index-latest-promotions__step-button {
  display: inline-block;
  background-color: #FFCC00;
  color: #003366;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 0.9em;
  font-weight: bold;
  transition: all 0.3s ease;
  border: 1px solid #FFCC00;
}

.page-index-latest-promotions__step-button:hover {
  background-color: #e6b800;
  color: #002244;
  transform: translateY(-2px);
}

.page-index-latest-promotions__terms-list {
  list-style: disc;
  text-align: left;
  max-width: 800px;
  margin: 0 auto 40px;
  padding-left: 20px;
  color: #c0c0c0;
  line-height: 1.8;
}

.page-index-latest-promotions__terms-list li {
  margin-bottom: 10px;
}

.page-index-latest-promotions__benefits-list {
  list-style: none;
  text-align: left;
  max-width: 800px;
  margin: 0 auto 40px;
  padding-left: 0;
  color: #d0d0d0;
  line-height: 1.8;
}

.page-index-latest-promotions__benefits-list li {
  margin-bottom: 15px;
  position: relative;
  padding-left: 40px;
  font-size: 1.1em;
}

.page-index-latest-promotions__benefits-list li::before {
  content: '★';
  color: #FFCC00;
  position: absolute;
  left: 0;
  font-size: 1.5em;
  line-height: 1;
  top: 0px;
}

.page-index-latest-promotions__faq-item {
  background-color: #003366;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #004488;
}

.page-index-latest-promotions__faq-question {
  font-size: 1.4em;
  color: #FFCC00;
  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.2em;
  transition: transform 0.3s ease;
}

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

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

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

/* Responsive Design */
@media (max-width: 1024px) {
  .page-index-latest-promotions__hero-title {
    font-size: 2.8em;
  }
  .page-index-latest-promotions__hero-subtitle {
    font-size: 1.1em;
  }
  .page-index-latest-promotions__section-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-index-latest-promotions__hero-section {
    padding: 60px 15px;
  }
  .page-index-latest-promotions__hero-title {
    font-size: 2.2em;
  }
  .page-index-latest-promotions__hero-subtitle {
    font-size: 1em;
  }
  .page-index-latest-promotions__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-index-latest-promotions__section {
    padding: 40px 15px;
  }
  .page-index-latest-promotions__section-title {
    font-size: 1.8em;
  }
  .page-index-latest-promotions__promotion-card, .page-index-latest-promotions__step-card {
    padding: 25px;
  }
  .page-index-latest-promotions__card-title {
    font-size: 1.5em;
  }
  .page-index-latest-promotions__steps-container {
    flex-direction: column;
    align-items: center;
  }
  .page-index-latest-promotions__step-card {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .page-index-latest-promotions__hero-title {
    font-size: 1.8em;
  }
  .page-index-latest-promotions__hero-subtitle {
    font-size: 0.9em;
  }
  .page-index-latest-promotions__cta-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-index-latest-promotions__section-title {
    font-size: 1.5em;
  }
  .page-index-latest-promotions__card-title {
    font-size: 1.3em;
  }
  .page-index-latest-promotions__faq-question {
    font-size: 1.2em;
  }
}