.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-hero {
  background-color: #003366;
  background-image: url('[GALLERY:bg:abstract_geometric,dark_blue,gold_accent]');
  background-size: cover;
  background-position: center;
  color: #ffffff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-index-latest-promotions-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 51, 102, 0.7);
  z-index: 1;
}

.page-index-latest-promotions-hero > * {
  position: relative;
  z-index: 2;
}

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

.page-index-latest-promotions-hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

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

.page-index-latest-promotions-btn-primary {
  background-color: #FFCC00;
  color: #003366;
  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: #003366;
  color: #FFCC00;
  border: 2px solid #FFCC00;
}

.page-index-latest-promotions-btn-secondary:hover {
  background-color: #002244;
  transform: translateY(-2px);
}

.page-index-latest-promotions-section {
  padding: 60px 0;
  background-color: #f8f8f8;
}

.page-index-latest-promotions-section:nth-of-type(even) {
  background-color: #ffffff;
}

.page-index-latest-promotions-section-title {
  font-size: 2.5em;
  color: #003366;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.page-index-latest-promotions-section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -15px;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFCC00;
  border-radius: 2px;
}

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

.page-index-latest-promotions-feature-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-latest-promotions-feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-index-latest-promotions-feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.2));
}

.page-index-latest-promotions-feature-title {
  font-size: 1.5em;
  color: #003366;
  margin-bottom: 10px;
}

.page-index-latest-promotions-promotions-list {
  background-color: #f0f4f8;
}

.page-index-latest-promotions-promotion-card {
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-latest-promotions-promotion-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.page-index-latest-promotions-promotion-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-bottom: 1px solid #eee;
}

.page-index-latest-promotions-promotion-content {
  padding: 30px;
}

.page-index-latest-promotions-promotion-title {
  font-size: 2em;
  color: #003366;
  margin-bottom: 15px;
}

.page-index-latest-promotions-promotion-description {
  margin-bottom: 20px;
  color: #555;
}

.page-index-latest-promotions-promotion-details {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.page-index-latest-promotions-promotion-details li {
  margin-bottom: 8px;
  color: #444;
}

.page-index-latest-promotions-promotion-details li strong {
  color: #003366;
}

.page-index-latest-promotions-how-to-claim {
  background-color: #ffffff;
}

.page-index-latest-promotions-steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  text-align: center;
}

.page-index-latest-promotions-step-item {
  background-color: #fefefe;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  position: relative;
  padding-top: 70px;
}

.page-index-latest-promotions-step-number {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #FFCC00;
  color: #003366;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2em;
  font-weight: bold;
  border: 4px solid #003366;
  box-shadow: 0 0 0 5px #fefefe;
}

.page-index-latest-promotions-step-title {
  font-size: 1.8em;
  color: #003366;
  margin-bottom: 15px;
}

.page-index-latest-promotions-step-image {
  width: 100%;
  max-width: 200px;
  height: auto;
  margin-top: 20px;
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-index-latest-promotions-center-text {
  text-align: center;
  margin-top: 50px;
}

.page-index-latest-promotions-terms {
  background-color: #f8f8f8;
}

.page-index-latest-promotions-terms-list {
  list-style: disc inside;
  margin-left: 20px;
  color: #555;
}

.page-index-latest-promotions-terms-list li {
  margin-bottom: 10px;
}

.page-index-latest-promotions-faq {
  background-color: #ffffff;
}

.page-index-latest-promotions-faq-item {
  background-color: #fefefe;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-index-latest-promotions-faq-question {
  font-size: 1.3em;
  color: #003366;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
}

.page-index-latest-promotions-faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  color: #FFCC00;
  transition: transform 0.3s ease;
}

.page-index-latest-promotions-faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-index-latest-promotions-faq-answer {
  color: #666;
  display: none;
  padding-top: 10px;
  border-top: 1px solid #eee;
  margin-top: 10px;
}

.page-index-latest-promotions-faq-answer.active {
  display: block;
}

.page-index-latest-promotions-cta-final {
  background-color: #003366;
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  background-image: url('[GALLERY:bg:geometric_pattern,dark_blue,gold_subtle]');
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.page-index-latest-promotions-cta-final::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 51, 102, 0.8);
  z-index: 1;
}

.page-index-latest-promotions-cta-final > * {
  position: relative;
  z-index: 2;
}

.page-index-latest-promotions-cta-title {
  font-size: 3em;
  color: #FFCC00;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-index-latest-promotions-cta-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-latest-promotions-cta-small-text {
  margin-top: 30px;
  font-size: 0.9em;
  opacity: 0.8;
}

/* Responsive adjustments */
@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-promotion-card {
    flex-direction: column;
  }
  .page-index-latest-promotions-promotion-image {
    height: 200px;
  }
  .page-index-latest-promotions-promotion-title {
    font-size: 1.8em;
  }
  .page-index-latest-promotions-steps-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-index-latest-promotions-hero {
    padding: 80px 0;
  }
  .page-index-latest-promotions-hero-title {
    font-size: 2.2em;
  }
  .page-index-latest-promotions-hero-description {
    font-size: 1em;
  }
  .page-index-latest-promotions-section {
    padding: 40px 0;
  }
  .page-index-latest-promotions-section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-index-latest-promotions-feature-item, .page-index-latest-promotions-step-item {
    padding: 25px;
  }
  .page-index-latest-promotions-step-number {
    top: -20px;
    width: 40px;
    height: 40px;
    font-size: 1.8em;
  }
  .page-index-latest-promotions-step-item {
    padding-top: 60px;
  }
  .page-index-latest-promotions-cta-title {
    font-size: 2.2em;
  }
  .page-index-latest-promotions-cta-description {
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-index-latest-promotions-hero-title {
    font-size: 1.8em;
  }
  .page-index-latest-promotions-btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-index-latest-promotions-section-title {
    font-size: 1.5em;
  }
  .page-index-latest-promotions-promotion-title {
    font-size: 1.5em;
  }
  .page-index-latest-promotions-feature-item, .page-index-latest-promotions-step-item {
    padding: 20px;
  }
  .page-index-latest-promotions-cta-title {
    font-size: 1.8em;
  }
}