/* style/index-latest-promotions.css */
.page-index-latest-promotions {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
}

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

/* Hero Section */
.page-index-latest-promotions__hero-section {
  background: linear-gradient(135deg, #1A2B4C, #2E406C);
  color: #fff;
  padding: 100px 0;
  text-align: center;
}

.page-index-latest-promotions__main-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for main title */
  line-height: 1.2;
  font-weight: bold;
}

.page-index-latest-promotions__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #E0E0E0; /* Light grey for readability on dark background */
}

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

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

.page-index-latest-promotions__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #1A2B4C; /* Dark blue text */
  border: 2px solid #FFD700;
}

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

.page-index-latest-promotions__btn--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text */
  border: 2px solid #FFD700;
}

.page-index-latest-promotions__btn--secondary:hover {
  background-color: #FFD700;
  color: #1A2B4C;
  transform: translateY(-2px);
}

/* General Section Styling */
.page-index-latest-promotions__promotions-overview,
.page-index-latest-promotions__benefits-section,
.page-index-latest-promotions__how-to-claim,
.page-index-latest-promotions__faq-section,
.page-index-latest-promotions__cta-final {
  padding: 80px 0;
  background-color: #fff;
}

.page-index-latest-promotions__promotions-overview {
  background-color: #F8F8F8;
}

.page-index-latest-promotions__cta-final {
  background-color: #1A2B4C;
  color: #fff;
  text-align: center;
}

.page-index-latest-promotions__section-title {
  font-size: 2.5em;
  color: #1A2B4C; /* Dark blue for section titles */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-index-latest-promotions__cta-final .page-index-latest-promotions__section-title {
  color: #FFD700; /* Gold for final CTA title */
}

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

.page-index-latest-promotions__cta-final .page-index-latest-promotions__cta-description {
  color: #E0E0E0;
}

/* Promotion Grid */
.page-index-latest-promotions__promotion-grid {
  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;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  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 12px 30px rgba(0, 0, 0, 0.15);
}

.page-index-latest-promotions__promotion-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-bottom: 3px solid #FFD700;
}

.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: #1A2B4C;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-index-latest-promotions__card-description {
  font-size: 0.95em;
  color: #666;
  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 {
  margin-bottom: 8px;
  font-size: 0.9em;
  color: #444;
}

.page-index-latest-promotions__card-features li strong {
  color: #1A2B4C;
}

.page-index-latest-promotions__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
  align-self: flex-start;
  margin-top: auto; /* Push button to bottom */
}

/* Benefits Section */
.page-index-latest-promotions__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  text-align: center;
}

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

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

.page-index-latest-promotions__benefit-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 5px 10px rgba(255, 215, 0, 0.4));
}

.page-index-latest-promotions__benefit-title {
  font-size: 1.4em;
  color: #1A2B4C;
  margin-bottom: 10px;
}

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

/* How To Claim Section */
.page-index-latest-promotions__steps {
  list-style: none;
  padding: 0;
  counter-reset: step-counter;
  max-width: 800px;
  margin: 0 auto 60px;
}

.page-index-latest-promotions__steps li {
  background-color: #F8F8F8;
  margin-bottom: 20px;
  padding: 25px 30px 25px 80px;
  border-radius: 10px;
  position: relative;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.page-index-latest-promotions__steps li::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #FFD700;
  color: #1A2B4C;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 1.3em;
  box-shadow: 0 2px 5px rgba(255, 215, 0, 0.4);
}

.page-index-latest-promotions__step-title {
  font-size: 1.5em;
  color: #1A2B4C;
  margin-bottom: 10px;
}

.page-index-latest-promotions__btn--large {
  padding: 18px 40px;
  font-size: 1.2em;
  display: block;
  width: fit-content;
  margin: 0 auto;
}

/* FAQ Section */
.page-index-latest-promotions__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

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

.page-index-latest-promotions__faq-question {
  font-size: 1.2em;
  color: #1A2B4C;
  padding: 20px 25px;
  margin: 0;
  cursor: pointer;
  position: relative;
  transition: background-color 0.3s ease;
}

.page-index-latest-promotions__faq-question::after {
  content: '+';
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  color: #FFD700;
  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 {
  padding: 0 25px 20px;
  color: #555;
  font-size: 1em;
  display: none; /* Hidden by default */
}

/* Final CTA */
.page-index-latest-promotions__cta-final .page-index-latest-promotions__btn--huge {
  padding: 20px 50px;
  font-size: 1.4em;
  border-width: 3px;
}

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

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

  .page-index-latest-promotions__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-index-latest-promotions__btn {
    width: 80%;
    max-width: 300px;
    margin: 0 auto;
  }

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

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

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

  .page-index-latest-promotions__steps li {
    padding: 20px 25px 20px 70px;
  }

  .page-index-latest-promotions__steps li::before {
    left: 20px;
    width: 35px;
    height: 35px;
    font-size: 1.2em;
  }

  .page-index-latest-promotions__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }

  .page-index-latest-promotions__faq-question::after {
    right: 20px;
  }

  .page-index-latest-promotions__btn--large,
  .page-index-latest-promotions__btn--huge {
    width: 90%;
    max-width: 350px;
  }
}

@media (max-width: 480px) {
  .page-index-latest-promotions__hero-section,
  .page-index-latest-promotions__promotions-overview,
  .page-index-latest-promotions__benefits-section,
  .page-index-latest-promotions__how-to-claim,
  .page-index-latest-promotions__faq-section,
  .page-index-latest-promotions__cta-final {
    padding: 60px 0;
  }

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

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

  .page-index-latest-promotions__btn {
    font-size: 1em;
    padding: 12px 25px;
  }

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