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

.page-promo__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  text-align: center;
  overflow: hidden; /* Prevent image overflow */
  background-color: #0A2342; /* Fallback background color */
  color: #ffffff;
}

.page-promo__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page-promo__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3; /* Overlay effect */
}

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

.page-promo__hero-title {
  font-size: 3.5em;
  color: #F2C94C;
  margin-bottom: 20px;
  line-height: 1.2;
}

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

.page-promo__hero-button {
  display: inline-block;
  background-color: #F2C94C;
  color: #0A2342;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

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

.page-promo__overview-section,
.page-promo__featured-promotions,
.page-promo__how-to-claim,
.page-promo__terms-section,
.page-promo__benefits-section,
.page-promo__cta-section {
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.page-promo__section-title {
  font-size: 2.5em;
  color: #0A2342;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

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

.page-promo__overview-text,
.page-promo__terms-text,
.page-promo__cta-description {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 30px;
  color: #555555;
}

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

.page-promo__promo-card,
.page-promo__benefit-item {
  background-color: #f9f9f9;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  padding-bottom: 20px;
}

.page-promo__promo-card:hover,
.page-promo__benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.page-promo__card-image,
.page-promo__benefit-icon {
  width: 100%;
  height: 250px; /* Consistent height for card images */
  object-fit: cover;
  margin-bottom: 15px;
  min-width: 200px; /* Ensure minimum display size */
  min-height: 200px; /* Ensure minimum display size */
}

.page-promo__card-title,
.page-promo__benefit-title {
  font-size: 1.5em;
  color: #0A2342;
  margin: 15px 10px 10px;
  min-height: 48px; /* Ensure consistent height for titles */
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

.page-promo__card-description,
.page-promo__benefit-description {
  font-size: 1em;
  color: #666666;
  padding: 0 20px;
  margin-bottom: 20px;
}

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

.page-promo__card-button:hover {
  background-color: #F2C94C;
  color: #0A2342;
}

.page-promo__how-to-claim {
  text-align: center;
}

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

.page-promo__step-item {
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 30px 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

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

.page-promo__step-icon {
  width: 200px; /* Explicitly set to meet the 200px requirement */
  height: 150px; /* Adjusted to maintain aspect ratio and meet minimum */
  object-fit: contain;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-promo__step-title {
  font-size: 1.3em;
  color: #0A2342;
  margin-bottom: 10px;
}

.page-promo__step-description {
  font-size: 0.95em;
  color: #666666;
}

.page-promo__terms-text a {
  color: #0A2342;
  text-decoration: underline;
}

.page-promo__terms-text a:hover {
  color: #F2C94C;
}

.page-promo__cta-section {
  text-align: center;
  background-color: #0A2342;
  color: #ffffff;
  padding: 60px 20px;
}

.page-promo__cta-section .page-promo__section-title {
  color: #F2C94C;
}

.page-promo__cta-description {
  max-width: 800px;
  margin: 0 auto 40px;
}

.page-promo__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-promo__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease, color 0.3s ease;
}

.page-promo__cta-button--primary {
  background-color: #F2C94C;
  color: #0A2342;
}

.page-promo__cta-button--primary:hover {
  background-color: #e0b03e;
  transform: translateY(-3px);
}

.page-promo__cta-button--secondary {
  background-color: transparent;
  color: #F2C94C;
  border: 2px solid #F2C94C;
}

.page-promo__cta-button--secondary:hover {
  background-color: #F2C94C;
  color: #0A2342;
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promo__hero-title {
    font-size: 2.8em;
  }
  .page-promo__section-title {
    font-size: 2em;
  }
  .page-promo__promotions-grid,
  .page-promo__benefits-grid,
  .page-promo__steps-list {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@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: 1em;
  }
  .page-promo__hero-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-promo__section-title {
    font-size: 1.8em;
  }
  .page-promo__overview-section,
  .page-promo__featured-promotions,
  .page-promo__how-to-claim,
  .page-promo__terms-section,
  .page-promo__benefits-section,
  .page-promo__cta-section {
    margin: 20px auto;
    padding: 15px;
  }
  .page-promo__promotions-grid,
  .page-promo__benefits-grid,
  .page-promo__steps-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-promo__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-promo__cta-button {
    width: 100%;
    max-width: 300px;
  }
  /* Mobile content area images must not overflow */
  .page-promo img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Ensure minimum display size */
    min- /* Ensure minimum display size */
  }
  .page-promo__card-image, .page-promo__benefit-icon {
    height: auto; /* Allow height to adjust proportionally */
    min-height: 200px; /* Ensure minimum height */
  }
  .page-promo__step-icon {
    width: 100%; /* Ensure it doesn't overflow parent */
    height: auto; /* Maintain aspect ratio */
    max-width: 200px; /* Ensure it's not too large but also not too small */
    min-height: 150px; /* Minimum height to meet 200px rule indirectly */
  }
}

@media (max-width: 480px) {
  .page-promo__hero-title {
    font-size: 1.8em;
  }
  .page-promo__section-title {
    font-size: 1.5em;
  }
  .page-promo__hero-section {
    padding: 40px 10px;
  }
}

/* Global image rules for content area to ensure minimum size and proper display */
.page-promo img {
  object-fit: cover;
}