.page-promo {
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  color: #333333; /* Default text color for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

/* Hero Section */
.page-promo__hero-section {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  background-color: #0A2463; /* Primary background for hero */
  color: #ffffff;
  text-align: center;
}

.page-promo__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3; /* Subtle overlay */
  z-index: 1;
}

.page-promo__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

.page-promo__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700; /* Auxiliary color for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.page-promo__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-promo__hero-button {
  display: inline-block;
  background-color: #FFD700; /* Auxiliary color for CTA */
  color: #0A2463; /* Dark text for contrast */
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-promo__hero-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

/* General Section Styling */
.page-promo__section-title {
  font-size: 2.5em;
  color: #0A2463; /* Primary color for titles */
  text-align: center;
  margin-bottom: 30px;
  padding-top: 40px;
}

.page-promo__section-intro {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
  color: #555555;
}

/* Promotions Grid */
.page-promo__featured-promos {
  padding: 60px 0;
  background-color: #f8f8f8;
}

.page-promo__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promo__promo-card {
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.page-promo__promo-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.page-promo__card-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  border-bottom: 3px solid #FFD700; /* Accent line */
}

.page-promo__card-title {
  font-size: 1.6em;
  color: #0A2463;
  margin: 25px 20px 15px 20px;
}

.page-promo__card-description {
  font-size: 1em;
  color: #666666;
  padding: 0 20px 25px 20px;
  flex-grow: 1;
}

.page-promo__card-button {
  display: inline-block;
  background-color: #0A2463;
  color: #ffffff;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  margin-bottom: 25px;
  transition: background-color 0.3s ease;
}

.page-promo__card-button:hover {
  background-color: #1a3c7a;
}

/* Claim Guide Section */
.page-promo__claim-guide {
  padding: 60px 0;
}

.page-promo__steps-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-promo__step-item {
  background-color: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-promo__step-item:last-child {
  margin-bottom: 0;
}

.page-promo__step-title {
  font-size: 1.8em;
  color: #FFD700; /* Auxiliary color for step numbers/titles */
  margin-bottom: 15px;
}

.page-promo__step-description {
  font-size: 1.05em;
  color: #555555;
  margin-bottom: 25px;
}

.page-promo__step-button {
  display: inline-block;
  background-color: #FFD700;
  color: #0A2463;
  padding: 10px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-promo__step-button:hover {
  background-color: #e6c200;
}

/* Terms Section */
.page-promo__terms-section {
  background-color: #0A2463;
  color: #ffffff;
  padding: 60px 0;
}

.page-promo__terms-section .page-promo__section-title {
  color: #FFD700;
}

.page-promo__terms-section .page-promo__section-intro {
  color: #f0f0f0;
}

.page-promo__terms-list {
  list-style: disc inside;
  margin: 30px auto;
  max-width: 800px;
  padding-left: 20px;
  font-size: 1.05em;
}

.page-promo__terms-item {
  margin-bottom: 10px;
}

.page-promo__terms-item strong {
  color: #FFD700;
}

.page-promo__terms-description {
  text-align: center;
  max-width: 800px;
  margin: 30px auto;
  font-size: 1.1em;
}

.page-promo__terms-link {
  display: inline-block;
  background-color: #FFD700;
  color: #0A2463;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 20px;
  transition: background-color 0.3s ease;
}

.page-promo__terms-link:hover {
  background-color: #e6c200;
}

/* Why Choose Section */
.page-promo__why-choose {
  padding: 60px 0;
  background-color: #f0f0f0;
}

.page-promo__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promo__feature-item {
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease;
}

.page-promo__feature-item:hover {
  transform: translateY(-5px);
}

.page-promo__feature-title {
  font-size: 1.5em;
  color: #0A2463;
  margin-bottom: 15px;
}

.page-promo__feature-description {
  font-size: 0.95em;
  color: #666666;
  margin-bottom: 20px;
}

.page-promo__feature-button {
  display: inline-block;
  background-color: #0A2463;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-promo__feature-button:hover {
  background-color: #1a3c7a;
}

/* Call to Action Section */
.page-promo__cta-section {
  background-color: #FFD700;
  padding: 80px 0;
  text-align: center;
  color: #0A2463; /* Dark text for light background */
}

.page-promo__cta-section .page-promo__section-title {
  color: #0A2463;
  margin-bottom: 20px;
}

.page-promo__cta-section .page-promo__section-intro {
  color: #333333;
  margin-bottom: 40px;
}

.page-promo__cta-button {
  display: inline-block;
  background-color: #0A2463;
  color: #ffffff;
  padding: 18px 45px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.4em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-promo__cta-button:hover {
  background-color: #1a3c7a;
  transform: translateY(-5px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promo__hero-title {
    font-size: 2.8em;
  }

  .page-promo__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-promo__hero-section {
    padding: 60px 0;
  }

  .page-promo__hero-title {
    font-size: 2.2em;
  }

  .page-promo__hero-description {
    font-size: 1.1em;
  }

  .page-promo__hero-button {
    padding: 12px 30px;
    font-size: 1em;
  }

  .page-promo__section-title {
    font-size: 1.8em;
  }

  .page-promo__section-intro {
    font-size: 1em;
  }

  .page-promo__promo-grid {
    grid-template-columns: 1fr;
  }

  .page-promo__card-image {
    height: 200px;
  }

  .page-promo__card-title {
    font-size: 1.4em;
  }

  .page-promo__step-title {
    font-size: 1.5em;
  }

  .page-promo__features-grid {
    grid-template-columns: 1fr;
  }

  .page-promo__cta-section {
    padding: 60px 0;
  }

  .page-promo__cta-button {
    padding: 15px 35px;
    font-size: 1.2em;
  }

  /* Ensure content images do not overflow on mobile */
  .page-promo img {
    max-width: 100%;
    height: auto;
  }

  .page-promo__hero-image {
    max-width: 100%;
    height: auto;
  }

  .page-promo__card-image {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-promo__hero-title {
    font-size: 1.8em;
  }

  .page-promo__hero-description {
    font-size: 0.95em;
  }

  .page-promo__section-title {
    font-size: 1.5em;
  }

  .page-promo__card-title {
    font-size: 1.2em;
  }

  .page-promo__step-title {
    font-size: 1.3em;
  }
}