.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;
}

.page-index-latest-promotions__text-center {
  text-align: center;
}

/* Hero Section */
.page-index-latest-promotions__hero {
  background: linear-gradient(135deg, #003366, #1a4d80); /* Darker blue gradient */
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-index-latest-promotions__hero-image-wrapper {
  position: absolute;
  bottom: -20px;
  right: -50px;
  opacity: 0.3;
  z-index: 0;
  width: 400px;
  height: 400px;
}

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

.page-index-latest-promotions__hero .page-index-latest-promotions__container {
  position: relative;
  z-index: 1;
}

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

.page-index-latest-promotions__subtitle {
  font-size: 1.4em;
  margin-bottom: 40px;
  color: #e0e0e0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-latest-promotions__btn {
  display: inline-block;
  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;
  margin: 0 10px;
  cursor: pointer;
}

.page-index-latest-promotions__btn--primary {
  background-color: #FFCC00; /* Gold */
  color: #003366; /* Deep Blue */
  border: 2px solid #FFCC00;
}

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

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

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

.page-index-latest-promotions__btn--large {
  padding: 18px 40px;
  font-size: 1.2em;
}

.page-index-latest-promotions__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
  margin-top: 20px;
  border-radius: 5px;
}

.page-index-latest-promotions__btn--link {
  background-color: transparent;
  color: #003366;
  border: none;
  padding: 0;
  font-size: 1em;
  text-decoration: underline;
  margin-top: 10px;
}

.page-index-latest-promotions__btn--link:hover {
  color: #FFCC00;
}

/* General Section Styling */
.page-index-latest-promotions__section {
  padding: 60px 0;
  background-color: #f8f8f8;
}

.page-index-latest-promotions__section--highlight {
  background-color: #e6f0f8; /* Lighter blue for contrast */
}

.page-index-latest-promotions__section--dark {
  background-color: #003366; /* Deep Blue */
  color: #ffffff;
}

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

.page-index-latest-promotions__section-title--light {
  color: #FFCC00;
}

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

.page-index-latest-promotions__section-description--light {
  color: #e0e0e0;
}

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

.page-index-latest-promotions__promo-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.page-index-latest-promotions__promo-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 25px;
  object-fit: contain;
}

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

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

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

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

.page-index-latest-promotions__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #FFCC00; /* Gold */
  color: #003366; /* Deep Blue */
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 20px;
  border: 3px solid #003366;
}

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

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

/* Benefits List */
.page-index-latest-promotions__benefits-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-latest-promotions__benefits-list li {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 10px;
  display: flex;
  align-items: flex-start;
  font-size: 1.1em;
  color: #ffffff;
}

.page-index-latest-promotions__benefits-icon {
  font-size: 1.5em;
  color: #FFCC00;
  margin-right: 15px;
  line-height: 1;
}

.page-index-latest-promotions__benefits-strong {
  color: #FFCC00;
}

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

.page-index-latest-promotions__tip-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.page-index-latest-promotions__tip-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 25px;
  object-fit: contain;
}

/* CTA Download Section */
.page-index-latest-promotions__cta-download {
  background: linear-gradient(135deg, #003366, #004d99); /* Dark blue gradient */
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-index-latest-promotions__cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

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

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

.page-index-latest-promotions__cta-image {
  max-width: 400px;
  width: 100%;
  height: auto;
  margin-top: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Final CTA Section */
.page-index-latest-promotions__section--final-cta {
  background-color: #f0f4f8;
  padding: 80px 0;
}

.page-index-latest-promotions__button-group {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-index-latest-promotions__title {
    font-size: 2.5em;
  }
  .page-index-latest-promotions__subtitle {
    font-size: 1.2em;
  }
  .page-index-latest-promotions__section-title {
    font-size: 2em;
  }
  .page-index-latest-promotions__promo-grid,
  .page-index-latest-promotions__steps,
  .page-index-latest-promotions__tips-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  .page-index-latest-promotions__benefits-list {
    grid-template-columns: 1fr;
  }
  .page-index-latest-promotions__cta-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-index-latest-promotions__hero {
    padding: 60px 0;
  }
  .page-index-latest-promotions__title {
    font-size: 2em;
  }
  .page-index-latest-promotions__subtitle {
    font-size: 1em;
  }
  .page-index-latest-promotions__btn {
    padding: 12px 25px;
    font-size: 1em;
    margin: 5px;
  }
  .page-index-latest-promotions__section {
    padding: 40px 0;
  }
  .page-index-latest-promotions__section-title {
    font-size: 1.8em;
  }
  .page-index-latest-promotions__section-description {
    font-size: 0.95em;
    margin-bottom: 30px;
  }
  .page-index-latest-promotions__promo-card,
  .page-index-latest-promotions__step-item,
  .page-index-latest-promotions__tip-card {
    padding: 25px;
  }
  .page-index-latest-promotions__cta-title {
    font-size: 1.8em;
  }
  .page-index-latest-promotions__cta-description {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-index-latest-promotions__cta-image {
    max-width: 300px;
  }
  .page-index-latest-promotions__hero-image-wrapper {
    width: 250px;
    height: 250px;
    bottom: -10px;
    right: -20px;
  }
}

@media (max-width: 480px) {
  .page-index-latest-promotions__title {
    font-size: 1.8em;
  }
  .page-index-latest-promotions__subtitle {
    font-size: 0.9em;
  }
  .page-index-latest-promotions__btn {
    width: 100%;
    margin: 5px 0;
  }
  .page-index-latest-promotions__promo-grid,
  .page-index-latest-promotions__steps,
  .page-index-latest-promotions__tips-grid {
    grid-template-columns: 1fr;
  }
  .page-index-latest-promotions__promo-card,
  .page-index-latest-promotions__step-item,
  .page-index-latest-promotions__tip-card {
    padding: 20px;
  }
  .page-index-latest-promotions__cta-title {
    font-size: 1.5em;
  }
  .page-index-latest-promotions__cta-description {
    font-size: 0.9em;
  }
  .page-index-latest-promotions__hero-image-wrapper {
    width: 200px;
    height: 200px;
    bottom: 0;
    right: -10px;
  }
}