.page-index-latest-promotions {
  font-family: Arial, sans-serif;
  color: #E5E7EB; /* Light gray for general text on dark background */
  background-color: #1A202C; /* Primary dark background */
  line-height: 1.6;
}

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

.page-index-latest-promotions__hero {
  background: linear-gradient(135deg, #1A202C 0%, #3a475a 100%); /* Dark gradient for hero */
  color: #FFD700; /* Gold for hero text */
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.page-index-latest-promotions__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  color: #E5E7EB; /* Light gray for subtitle */
}

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

.page-index-latest-promotions__hero-btn:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
  transform: translateY(-3px);
}

.page-index-latest-promotions__section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-index-latest-promotions__section:last-of-type {
  border-bottom: none;
}

.page-index-latest-promotions__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-index-latest-promotions__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-index-latest-promotions__text-content {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #E5E7EB;
}

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

.page-index-latest-promotions__promotion-card {
  background-color: #2D3748; /* Slightly lighter dark background for cards */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.page-index-latest-promotions__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 3px solid #FFD700; /* Gold border for image */
}

.page-index-latest-promotions__card-title {
  font-size: 1.5em;
  color: #FFD700; /* Gold for card title */
  padding: 20px 20px 10px;
}

.page-index-latest-promotions__card-description {
  font-size: 1em;
  color: #CBD5E0; /* Lighter gray for description */
  padding: 0 20px 20px;
  flex-grow: 1;
}

.page-index-latest-promotions__card-btn {
  display: block;
  background-color: #FFD700; /* Gold for card button */
  color: #1A202C; /* Dark text on gold button */
  padding: 12px 20px;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  border-radius: 0 0 10px 10px;
  transition: background-color 0.3s ease;
}

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

.page-index-latest-promotions__how-to-claim .page-index-latest-promotions__steps-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.page-index-latest-promotions__how-to-claim .page-index-latest-promotions__steps-list li {
  background-color: #2D3748;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

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

.page-index-latest-promotions__how-to-claim .page-index-latest-promotions__steps-list p {
  color: #CBD5E0;
}

.page-index-latest-promotions__how-to-claim .page-index-latest-promotions__steps-list a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-index-latest-promotions__how-to-claim .page-index-latest-promotions__steps-list a:hover {
  color: #e6c200;
  text-decoration: underline;
}

.page-index-latest-promotions__faq-item {
  background-color: #2D3748;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.page-index-latest-promotions__faq-question {
  font-size: 1.2em;
  color: #FFD700;
  padding: 20px;
  margin: 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.page-index-latest-promotions__faq-question::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-index-latest-promotions__faq-question.active::after {
  transform: rotate(45deg);
}

.page-index-latest-promotions__faq-answer {
  padding: 0 20px;
  color: #CBD5E0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

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

.page-index-latest-promotions__cta {
  background-color: #2D3748; /* Darker background for CTA */
  color: #E5E7EB;
  padding: 80px 0;
  text-align: center;
}

.page-index-latest-promotions__cta-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-index-latest-promotions__cta-description {
  font-size: 1.3em;
  margin-bottom: 40px;
}

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

.page-index-latest-promotions__cta-btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-index-latest-promotions__cta-btn--primary {
  background-color: #FFD700;
  color: #1A202C;
}

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

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

.page-index-latest-promotions__cta-btn--secondary:hover {
  background-color: #FFD700;
  color: #1A202C;
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-index-latest-promotions__hero-title {
    font-size: 2.5em;
  }

  .page-index-latest-promotions__hero-subtitle {
    font-size: 1.2em;
  }

  .page-index-latest-promotions__section-title {
    font-size: 2em;
  }

  .page-index-latest-promotions__grid {
    grid-template-columns: 1fr;
  }

  .page-index-latest-promotions__how-to-claim .page-index-latest-promotions__steps-list {
    grid-template-columns: 1fr;
  }

  .page-index-latest-promotions__cta-title {
    font-size: 2em;
  }

  .page-index-latest-promotions__cta-description {
    font-size: 1em;
  }

  .page-index-latest-promotions__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-index-latest-promotions__cta-btn {
    width: 80%;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .page-index-latest-promotions__hero {
    padding: 60px 0;
  }

  .page-index-latest-promotions__hero-title {
    font-size: 2em;
  }

  .page-index-latest-promotions__hero-subtitle {
    font-size: 1em;
  }

  .page-index-latest-promotions__section {
    padding: 40px 0;
  }

  .page-index-latest-promotions__section-title {
    font-size: 1.8em;
  }

  .page-index-latest-promotions__card-title {
    font-size: 1.3em;
  }

  .page-index-latest-promotions__faq-question {
    font-size: 1.1em;
  }

  .page-index-latest-promotions__cta-title {
    font-size: 1.8em;
  }

  .page-index-latest-promotions__cta-description {
    font-size: 0.9em;
  }
}