.page-promo {
  color: #333333; /* Dark text for light body background */
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header for desktop */
}

.page-promo__hero-section {
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-promo__hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}

.page-promo__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4; /* Slightly dimmed to make text readable */
  z-index: 0;
}

.page-promo__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

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

.page-promo__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  line-height: 1.6;
  color: #f0f0f0;
}

.page-promo__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  font-size: 1.1em;
  cursor: pointer;
  border: none;
  text-align: center;
}

.page-promo__button--primary {
  background-color: #FFCC00;
  color: #003366;
  box-shadow: 0 4px 15px rgba(255, 204, 0, 0.4);
}

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

.page-promo__button--secondary {
  background-color: #003366;
  color: #FFCC00;
  border: 2px solid #FFCC00;
}

.page-promo__button--secondary:hover {
  background-color: #002244;
  transform: translateY(-2px);
}

.page-promo__button--tertiary {
  background-color: transparent;
  color: #003366;
  border: 2px solid #003366;
}

.page-promo__button--tertiary:hover {
  background-color: #003366;
  color: #ffffff;
  transform: translateY(-2px);
}

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

.page-promo__section-title {
  font-size: 2.5em;
  color: #003366;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

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

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

/* Featured Promos Section */
.page-promo__featured-promos {
  padding: 60px 0;
  background-color: #f9f9f9;
}

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

.page-promo__promo-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 20px 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;
}

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

.page-promo__card-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}

.page-promo__card-title {
  font-size: 1.6em;
  color: #003366;
  margin: 25px 20px 10px 20px;
  line-height: 1.3;
}

.page-promo__card-title a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

.page-promo__card-title a:hover {
  color: #FFCC00;
}

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

.page-promo__promo-card .page-promo__button--secondary {
  margin: 0 20px 25px 20px;
  width: calc(100% - 40px);
}

/* How to Claim Section */
.page-promo__how-to-claim {
  padding: 60px 0;
  background-color: #ffffff;
}

.page-promo__steps-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

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

.page-promo__step-title {
  font-size: 1.8em;
  color: #003366;
  margin-bottom: 15px;
}

.page-promo__step-description {
  font-size: 1em;
  color: #555555;
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 20px;
}

/* Terms Overview Section */
.page-promo__terms-overview {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.page-promo__terms-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.page-promo__term-item {
  background-color: #ffffff;
  border-left: 5px solid #FFCC00;
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.page-promo__term-heading {
  font-size: 1.5em;
  color: #003366;
  margin-bottom: 10px;
}

.page-promo__term-description {
  font-size: 0.95em;
  color: #666666;
  line-height: 1.6;
}

.page-promo__button-group {
  text-align: center;
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

/* Download CTA Section */
.page-promo__download-cta {
  background-color: #003366;
  color: #ffffff;
  padding: 60px 0;
  text-align: center;
}

.page-promo__download-cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.page-promo__download-image {
  width: 400px; /* Example fixed width for desktop */
  height: 300px; /* Example fixed height for desktop */
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

.page-promo__download-cta .page-promo__section-title {
  color: #FFCC00;
}

.page-promo__download-cta .page-promo__section-title::after {
  background-color: #ffffff;
}

.page-promo__download-cta .page-promo__section-intro {
  color: #f0f0f0;
}

/* Why PHWIN Section */
.page-promo__why-phwin {
  padding: 60px 0;
  background-color: #ffffff;
}

.page-promo__benefits-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-promo__benefit-item {
  background-color: #f0f8ff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.page-promo__benefit-heading {
  font-size: 1.6em;
  color: #003366;
  margin-bottom: 10px;
}

.page-promo__benefit-description {
  font-size: 1em;
  color: #555555;
  line-height: 1.6;
}

/* Final CTA Section */
.page-promo__final-cta {
  padding: 60px 0;
  background-color: #003366;
  color: #ffffff;
  text-align: center;
}

.page-promo__final-cta .page-promo__section-title {
  color: #FFCC00;
}

.page-promo__final-cta .page-promo__section-title::after {
  background-color: #ffffff;
}

.page-promo__final-cta .page-promo__section-intro {
  color: #f0f0f0;
}

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

@media (max-width: 768px) {
  .page-promo__hero-section {
    padding: 60px 15px;
  }
  .page-promo__hero-title {
    font-size: 2.2em;
  }
  .page-promo__hero-description {
    font-size: 1.1em;
  }
  .page-promo__section-title {
    font-size: 1.8em;
  }
  .page-promo__section-intro {
    font-size: 0.95em;
    margin-bottom: 30px;
  }
  .page-promo__promo-grid, .page-promo__steps-list, .page-promo__terms-list, .page-promo__benefits-list {
    grid-template-columns: 1fr;
  }
  .page-promo__card-image {
    height: 200px;
  }
  .page-promo__card-title {
    font-size: 1.4em;
  }
  .page-promo__step-title, .page-promo__term-heading, .page-promo__benefit-heading {
    font-size: 1.5em;
  }
  .page-promo__download-image {
    width: 300px;
    height: 225px;
  }
  /* Ensure images in content area do not overflow */
  .page-promo__promo-card img, .page-promo__download-cta-content img {
    max-width: 100%;
    height: auto;
  }
  .page-promo__button-group {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .page-promo__hero-section {
    padding: 40px 10px;
  }
  .page-promo__hero-title {
    font-size: 1.8em;
  }
  .page-promo__hero-description {
    font-size: 1em;
  }
  .page-promo__button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-promo__section-title {
    font-size: 1.6em;
  }
  .page-promo__promo-card .page-promo__button--secondary {
    width: calc(100% - 40px);
  }
}