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

.page-promo__hero-section {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  text-align: center;
  padding: 80px 20px 40px;
  background-color: #0A246A; /* Dark blue background for hero text area */
}

.page-promo__hero-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  margin-top: 40px;
  border-radius: 10px;
}

.page-promo__hero-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page-promo__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #F3C70E; /* Gold for main title */
  line-height: 1.2;
}

.page-promo__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.page-promo__hero-button,
.page-promo__card-button,
.page-promo__cta-button,
.page-promo__final-cta {
  display: inline-block;
  background-color: #F3C70E; /* Gold button */
  color: #0A246A; /* Dark blue text on gold button */
  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;
  border: none;
  cursor: pointer;
}

.page-promo__hero-button:hover,
.page-promo__card-button:hover,
.page-promo__cta-button:hover,
.page-promo__final-cta:hover {
  background-color: #e0b60e; /* Slightly darker gold on hover */
  transform: translateY(-2px);
}

.page-promo__offers-section {
  padding: 60px 20px;
  background-color: #f4f4f4;
}

.page-promo__content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.page-promo__section-title {
  font-size: 2.2em;
  color: #0A246A; /* Dark blue for section titles */
  text-align: center;
  margin-bottom: 30px;
}

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

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

.page-promo__offer-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 25px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-promo__card-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-promo__card-title {
  font-size: 1.4em;
  color: #0A246A;
  margin-bottom: 15px;
}

.page-promo__card-description {
  font-size: 0.95em;
  color: #666666;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-promo__how-to-claim,
.page-promo__terms-conditions,
.page-promo__why-choose {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 40px;
  margin-bottom: 40px;
}

.page-promo__how-to-claim-title,
.page-promo__terms-conditions-title,
.page-promo__why-choose-title {
  font-size: 1.8em;
  color: #0A246A;
  margin-bottom: 25px;
  text-align: center;
}

.page-promo__claim-steps {
  list-style-type: decimal;
  padding-left: 25px;
  margin-bottom: 30px;
}

.page-promo__claim-steps li {
  margin-bottom: 10px;
  font-size: 1.05em;
  color: #444444;
}

.page-promo__claim-steps li strong {
  color: #0A246A;
}

.page-promo__terms-conditions-text {
  font-size: 1em;
  color: #555555;
  margin-bottom: 25px;
}

.page-promo__terms-link {
  display: inline-block;
  color: #0A246A; /* Dark blue link */
  text-decoration: underline;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-promo__terms-link:hover {
  color: #F3C70E; /* Gold on hover */
}

.page-promo__why-choose-list {
  list-style-type: disc;
  padding-left: 25px;
  margin-bottom: 30px;
}

.page-promo__why-choose-list li {
  margin-bottom: 10px;
  font-size: 1.05em;
  color: #444444;
}

.page-promo__why-choose-list li strong {
  color: #0A246A;
}

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

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

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

  .page-promo__hero-button,
  .page-promo__card-button,
  .page-promo__cta-button,
  .page-promo__final-cta {
    padding: 12px 25px;
    font-size: 1em;
  }

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

  .page-promo__hero-section,
  .page-promo__offers-section,
  .page-promo__how-to-claim,
  .page-promo__terms-conditions,
  .page-promo__why-choose {
    padding: 30px 15px;
  }

  /* Mobile content area image constraint */
  .page-promo img {
    max-width: 100% !important;
    height: auto !important;
  }

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

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

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

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

  .page-promo__hero-button,
  .page-promo__card-button,
  .page-promo__cta-button,
  .page-promo__final-cta {
    padding: 10px 20px;
    font-size: 0.9em;
  }

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

  .page-promo__card-description {
    font-size: 0.85em;
  }

  .page-promo__how-to-claim-title,
  .page-promo__terms-conditions-title,
  .page-promo__why-choose-title {
    font-size: 1.5em;
  }

  .page-promo__claim-steps,
  .page-promo__why-choose-list {
    padding-left: 20px;
  }

  .page-promo__claim-steps li,
  .page-promo__why-choose-list li {
    font-size: 0.9em;
  }
}