.page-index-latest-promotions {
  font-family: Arial, sans-serif;
  color: #f5e6d0; /* Light text for dark background */
  background-color: #0A192F; /* Primary dark background */
  line-height: 1.6;
}

.page-index-latest-promotions__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, #0A192F 0%, #1a304f 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 400px;
}

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

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

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

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

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

.page-index-latest-promotions__hero-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #0A192F; /* Dark text on gold */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-index-latest-promotions__hero-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

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

.page-index-latest-promotions__section-title {
  font-size: 2.5em;
  color: #FFD700;
  margin-bottom: 20px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

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

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

.page-index-latest-promotions__promotion-card {
  background-color: #1a304f;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
  text-align: left;
  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 24px rgba(0, 0, 0, 0.6);
}

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

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

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

.page-index-latest-promotions__card-text {
  color: #e0e0e0;
  margin-bottom: 20px;
  flex-grow: 1;
}

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

.page-index-latest-promotions__card-features li {
  color: #b3b3b3;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}

.page-index-latest-promotions__card-features li .icon-check {
  color: #FFD700;
  margin-right: 10px;
  font-weight: bold;
}

.page-index-latest-promotions__card-button {
  display: block;
  width: 100%;
  background-color: #FFD700;
  color: #0A192F;
  padding: 12px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
}

.page-index-latest-promotions__card-button:hover {
  background-color: #e6c200;
}

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

.page-index-latest-promotions__step-card {
  background-color: #1a304f;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-index-latest-promotions__step-icon {
  background-color: #FFD700;
  color: #0A192F;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 20px;
}

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

.page-index-latest-promotions__step-text {
  color: #e0e0e0;
  margin-bottom: 25px;
}

.page-index-latest-promotions__step-button {
  display: inline-block;
  background-color: #FFD700;
  color: #0A192F;
  padding: 10px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  transition: background-color 0.3s ease;
}

.page-index-latest-promotions__step-button:hover {
  background-color: #e6c200;
}

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

.page-index-latest-promotions__feature-item {
  background-color: #1a304f;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.page-index-latest-promotions__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px #FFD700);
}

.page-index-latest-promotions__feature-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-index-latest-promotions__feature-text {
  color: #e0e0e0;
}

.page-index-latest-promotions__faq-container {
  margin-top: 40px;
  text-align: left;
}

.page-index-latest-promotions__faq-item {
  background-color: #1a304f;
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 20px 25px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-index-latest-promotions__faq-question {
  font-size: 1.4em;
  color: #FFD700;
  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;
  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: 1.05em;
  color: #cccccc;
  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;
}

.page-index-latest-promotions__call-to-action {
  background-color: #0A192F;
  padding: 80px 20px;
  border-top: 2px solid #FFD700;
}

.page-index-latest-promotions__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #0A192F;
  padding: 18px 40px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.3em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin: 15px;
  border: none;
  cursor: pointer;
}

.page-index-latest-promotions__cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-5px);
}

.page-index-latest-promotions__cta-button--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-index-latest-promotions__cta-button--secondary:hover {
  background-color: #FFD700;
  color: #0A192F;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-index-latest-promotions__hero-title {
    font-size: 2.8em;
  }
  .page-index-latest-promotions__section-title {
    font-size: 2em;
  }
  .page-index-latest-promotions__hero {
    flex-direction: column;
    padding: 40px 20px;
  }
}

@media (max-width: 768px) {
  .page-index-latest-promotions__hero-title {
    font-size: 2.2em;
  }
  .page-index-latest-promotions__hero-subtitle {
    font-size: 1.1em;
  }
  .page-index-latest-promotions__section-title {
    font-size: 1.8em;
  }
  .page-index-latest-promotions__promotions-grid,
  .page-index-latest-promotions__steps-grid,
  .page-index-latest-promotions__features-grid {
    grid-template-columns: 1fr;
  }
  .page-index-latest-promotions__cta-button {
    font-size: 1.1em;
    padding: 15px 30px;
    margin: 10px;
  }
}

@media (max-width: 480px) {
  .page-index-latest-promotions__hero-title {
    font-size: 1.8em;
  }
  .page-index-latest-promotions__hero-subtitle {
    font-size: 1em;
  }
  .page-index-latest-promotions__section-title {
    font-size: 1.5em;
  }
  .page-index-latest-promotions__card-title,
  .page-index-latest-promotions__step-title,
  .page-index-latest-promotions__feature-title {
    font-size: 1.4em;
  }
  .page-index-latest-promotions__hero-button,
  .page-index-latest-promotions__cta-button {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
  .page-index-latest-promotions__cta-button--secondary {
    margin-top: 10px;
  }
}