.page-index-latest-promotions {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333; /* Dark gray for general text on light backgrounds */
  background-color: #f8f8f8;
}

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

.page-index-latest-promotions__hero-section {
  background: linear-gradient(135deg, #0047AB, #002870); /* Darker blue gradient */
  padding: 100px 0;
  text-align: center;
  color: #ffffff; /* White text on dark blue background */
}

.page-index-latest-promotions__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for main title */
  font-weight: bold;
}

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

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

.page-index-latest-promotions__section--alt-bg {
  background-color: #f0f0f0;
}

.page-index-latest-promotions__section-title {
  font-size: 2.5em;
  color: #0047AB; /* Deep blue for section titles */
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  padding-bottom: 15px;
}

.page-index-latest-promotions__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700; /* Gold underline */
  border-radius: 2px;
}

.page-index-latest-promotions__content-block {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
}

.page-index-latest-promotions__content-block--reverse {
  flex-direction: row-reverse;
}

.page-index-latest-promotions__image-wrapper {
  flex: 1;
  min-width: 300px;
}

.page-index-latest-promotions__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-index-latest-promotions__text-content {
  flex: 1;
}

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

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

.page-index-latest-promotions__button--primary {
  background-color: #FFD700; /* Gold button */
  color: #002870; /* Darker blue text on gold */
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-index-latest-promotions__button--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-index-latest-promotions__button--secondary {
  background-color: #0047AB; /* Deep blue button */
  color: #ffffff; /* White text on deep blue */
  border: 2px solid #0047AB;
  box-shadow: 0 4px 15px rgba(0, 71, 171, 0.4);
}

.page-index-latest-promotions__button--secondary:hover {
  background-color: #003a8f;
  border-color: #003a8f;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 71, 171, 0.6);
}

.page-index-latest-promotions__how-to-claim {
  background-color: #ffffff;
  padding: 80px 0;
  text-align: center;
}

.page-index-latest-promotions__how-to-claim-intro {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #555555;
}

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

.page-index-latest-promotions__steps-list li {
  background-color: #fefefe;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.page-index-latest-promotions__steps-list li:hover {
  transform: translateY(-5px);
}

.page-index-latest-promotions__steps-list h3 {
  font-size: 1.5em;
  color: #0047AB; /* Deep blue for step titles */
  margin-bottom: 15px;
}

.page-index-latest-promotions__steps-list p {
  font-size: 1em;
  color: #555555;
}

.page-index-latest-promotions__steps-list a {
  color: #0047AB; /* Deep blue for links in steps */
  text-decoration: underline;
}

.page-index-latest-promotions__steps-list a:hover {
  color: #FFD700; /* Gold on hover */
}

.page-index-latest-promotions__how-to-claim-footer {
  margin-top: 50px;
  font-style: italic;
  color: #777777;
}

.page-index-latest-promotions__cta-section {
  background-color: #0047AB; /* Deep blue background */
  padding: 80px 0;
  text-align: center;
  color: #ffffff;
}

.page-index-latest-promotions__cta-title {
  font-size: 3em;
  color: #FFD700; /* Gold for CTA title */
  margin-bottom: 20px;
}

.page-index-latest-promotions__cta-description {
  font-size: 1.3em;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #e0e0e0;
}

.page-index-latest-promotions__cta-buttons .page-index-latest-promotions__button {
  margin: 0 15px;
}

/* 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__content-block {
    flex-direction: column;
    text-align: center;
  }
  .page-index-latest-promotions__content-block--reverse {
    flex-direction: column;
  }
  .page-index-latest-promotions__cta-title {
    font-size: 2.5em;
  }
  .page-index-latest-promotions__cta-description {
    font-size: 1.1em;
  }
}

@media (max-width: 768px) {
  .page-index-latest-promotions__hero-title {
    font-size: 2.2em;
  }
  .page-index-latest-promotions__hero-description {
    font-size: 1em;
  }
  .page-index-latest-promotions__section-title {
    font-size: 1.8em;
  }
  .page-index-latest-promotions__content-block {
    gap: 20px;
  }
  .page-index-latest-promotions__image-wrapper {
    min-width: unset;
  }
  .page-index-latest-promotions__button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-index-latest-promotions__cta-title {
    font-size: 2em;
  }
  .page-index-latest-promotions__cta-description {
    font-size: 1em;
  }
  .page-index-latest-promotions__cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  .page-index-latest-promotions__cta-buttons .page-index-latest-promotions__button {
    margin: 0;
  }
  .page-index-latest-promotions__steps-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .page-index-latest-promotions__hero-section,
  .page-index-latest-promotions__section,
  .page-index-latest-promotions__how-to-claim,
  .page-index-latest-promotions__cta-section {
    padding: 40px 0;
  }
  .page-index-latest-promotions__hero-title {
    font-size: 1.8em;
  }
  .page-index-latest-promotions__section-title {
    font-size: 1.5em;
    margin-bottom: 30px;
  }
  .page-index-latest-promotions__text-content p {
    font-size: 0.95em;
  }
  .page-index-latest-promotions__button {
    font-size: 0.9em;
    padding: 10px 20px;
  }
  .page-index-latest-promotions__cta-title {
    font-size: 1.8em;
  }
}