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

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

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

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

.page-index-latest-promotions__hero-description {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #E0E0E0;
}

.page-index-latest-promotions__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #0A192F;
  padding: 15px 30px;
  border-radius: 50px;
  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__cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.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;
  transform: translateY(-3px);
}

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

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

.page-index-latest-promotions__section-title {
  font-size: 2.8em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-index-latest-promotions__section-subtitle {
  font-size: 1.2em;
  color: #E0E0E0;
  text-align: center;
  margin-bottom: 60px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-index-latest-promotions__promo-card {
  display: flex;
  background-color: #1a3a66;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-latest-promotions__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.page-index-latest-promotions__promo-image {
  width: 40%;
  height: auto;
  object-fit: cover;
  display: block;
}

.page-index-latest-promotions__promo-content {
  width: 60%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-index-latest-promotions__promo-title {
  font-size: 2em;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-index-latest-promotions__promo-text {
  color: #F5E6D0;
  margin-bottom: 20px;
  font-size: 1.1em;
}

.page-index-latest-promotions__promo-details {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-index-latest-promotions__promo-details li {
  color: #F5E6D0;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  font-size: 1.05em;
}

.page-index-latest-promotions__icon {
  color: #FFD700;
  margin-right: 10px;
  font-size: 1.2em;
  font-weight: bold;
}

.page-index-latest-promotions__promo-button {
  display: inline-block;
  background-color: #FFD700;
  color: #0A192F;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  align-self: flex-start;
}

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

.page-index-latest-promotions__how-to-claim {
  padding: 80px 0;
  background-color: #0A192F;
}

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

.page-index-latest-promotions__steps-list li {
  background-color: #1a3a66;
  border-radius: 10px;
  padding: 30px;
  display: flex;
  align-items: flex-start;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-index-latest-promotions__step-number {
  font-size: 2.5em;
  color: #FFD700;
  font-weight: bold;
  margin-right: 20px;
  line-height: 1;
}

.page-index-latest-promotions__steps-list li p {
  color: #F5E6D0;
  font-size: 1.1em;
  margin: 0;
}

.page-index-latest-promotions__steps-list li p strong {
  color: #FFD700;
}

.page-index-latest-promotions__inline-link {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-index-latest-promotions__inline-link:hover {
  text-decoration: underline;
}

.page-index-latest-promotions__important-note {
  background-color: #FFD700;
  color: #0A192F;
  padding: 20px;
  border-radius: 10px;
  margin-top: 50px;
  font-size: 1.1em;
  text-align: center;
  font-weight: bold;
}

.page-index-latest-promotions__strategy-tips {
  padding: 80px 0;
  background-color: #0A192F;
}

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

.page-index-latest-promotions__tip-item {
  background-color: #1a3a66;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

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

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

.page-index-latest-promotions__tip-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-index-latest-promotions__tip-text {
  color: #F5E6D0;
  font-size: 1em;
}

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

.page-index-latest-promotions__faq-item {
  background-color: #1a3a66;
  border-radius: 10px;
  padding: 25px 30px;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px 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: 0;
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

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

.page-index-latest-promotions__faq-answer {
  color: #F5E6D0;
  font-size: 1.05em;
  margin-top: 15px;
  display: none; /* Hidden by default, shown by JS */
}

.page-index-latest-promotions__faq-item.active .page-index-latest-promotions__faq-answer {
  display: block;
}

.page-index-latest-promotions__cta-final {
  padding: 100px 0;
  background: linear-gradient(45deg, #0A192F, #1a3a66);
  text-align: center;
}

.page-index-latest-promotions__cta-final-content {
  background-color: rgba(26, 58, 102, 0.8);
  padding: 60px 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-index-latest-promotions__hero-title {
    font-size: 2.8em;
  }
  .page-index-latest-promotions__promo-card {
    flex-direction: column;
  }
  .page-index-latest-promotions__promo-image,
  .page-index-latest-promotions__promo-content {
    width: 100%;
  }
  .page-index-latest-promotions__promo-image {
    height: 250px;
  }
  .page-index-latest-promotions__promo-content {
    padding: 30px;
  }
  .page-index-latest-promotions__steps-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-index-latest-promotions__hero-title {
    font-size: 2.2em;
  }
  .page-index-latest-promotions__hero-description,
  .page-index-latest-promotions__section-subtitle {
    font-size: 1em;
  }
  .page-index-latest-promotions__section-title {
    font-size: 2em;
  }
  .page-index-latest-promotions__promo-title {
    font-size: 1.6em;
  }
  .page-index-latest-promotions__promo-text,
  .page-index-latest-promotions__promo-details li,
  .page-index-latest-promotions__tip-text,
  .page-index-latest-promotions__faq-answer {
    font-size: 0.95em;
  }
  .page-index-latest-promotions__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-index-latest-promotions__promo-content {
    padding: 20px;
  }
  .page-index-latest-promotions__steps-list li {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .page-index-latest-promotions__step-number {
    margin-right: 0;
    margin-bottom: 15px;
  }
}

@media (max-width: 480px) {
  .page-index-latest-promotions__hero-section,
  .page-index-latest-promotions__promotions-grid,
  .page-index-latest-promotions__how-to-claim,
  .page-index-latest-promotions__strategy-tips,
  .page-index-latest-promotions__faq-section,
  .page-index-latest-promotions__cta-final {
    padding: 60px 0;
  }
  .page-index-latest-promotions__hero-title {
    font-size: 1.8em;
  }
  .page-index-latest-promotions__section-title {
    font-size: 1.6em;
  }
  .page-index-latest-promotions__promo-image {
    height: 200px;
  }
  .page-index-latest-promotions__cta-final-content {
    padding: 40px 20px;
  }
}