.page-promo {
  color: #f0f0f0; /* Light text for dark background */
  background-color: #0A2239; /* Main dark background color */
  padding-top: var(--header-offset, 120px); /* Space for fixed header */
}

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

.page-promo__hero-section {
  position: relative;
  overflow: hidden;
  padding: 80px 0 60px;
  background-color: #0A2239; /* Ensure hero section has a base dark color */
  text-align: center;
}

.page-promo__hero-image {
  width: 100%;
  height: auto;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  z-index: 1;
  opacity: 0.3;
}

.page-promo__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
  background: rgba(0, 0, 0, 0.4); /* Semi-transparent overlay for text readability */
  border-radius: 10px;
}

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

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

.page-promo__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Auxiliary gold for CTA */
  color: #0A2239; /* Dark text on gold button */
  padding: 15px 40px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-promo__cta-button:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
  transform: translateY(-3px);
}

.page-promo__section-title {
  font-size: 2.8em;
  color: #FFD700;
  text-align: center;
  margin: 60px 0 40px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-promo__description-text {
  font-size: 1.1em;
  line-height: 1.6;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px;
  color: #cccccc;
}

.page-promo__featured-promos {
  padding: 60px 0;
  background-color: #0A2239;
}

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

.page-promo__promo-card {
  background-color: #1a3a5a; /* Slightly lighter dark blue for cards */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
  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 24px rgba(0, 0, 0, 0.6);
}

.page-promo__promo-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-bottom: 3px solid #FFD700; /* Gold accent */
  filter: none; /* Ensure no image filters */
}

.page-promo__card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-promo__card-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
  line-height: 1.3;
}

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

.page-promo__card-button {
  display: inline-block;
  background-color: #FFD700;
  color: #0A2239;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: background-color 0.3s ease;
  align-self: flex-start;
}

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

.page-promo__how-to-claim {
  padding: 60px 0;
  background-color: #0A2239;
}

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

.page-promo__step-card {
  background-color: #1a3a5a;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

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

.page-promo__step-number {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #FFD700;
  color: #0A2239;
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

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

.page-promo__step-description {
  font-size: 0.95em;
  color: #cccccc;
  line-height: 1.6;
  margin-bottom: 20px;
}

.page-promo__step-link {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-promo__step-link:hover {
  color: #e6c200;
  text-decoration: underline;
}

.page-promo__terms-conditions {
  padding: 60px 0;
  background-color: #0A2239;
}

.page-promo__terms-list {
  list-style: none;
  padding: 0;
  max-width: 900px;
  margin: 0 auto 40px;
}

.page-promo__terms-item {
  background-color: #1a3a5a;
  border-left: 5px solid #FFD700;
  margin-bottom: 15px;
  padding: 15px 20px;
  border-radius: 5px;
  font-size: 1em;
  color: #cccccc;
  line-height: 1.6;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-promo__read-more-link {
  display: block;
  text-align: center;
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: color 0.3s ease;
}

.page-promo__read-more-link:hover {
  color: #e6c200;
  text-decoration: underline;
}

.page-promo__cta-section {
  background-color: #FFD700; /* Auxiliary gold background for strong CTA */
  color: #0A2239; /* Dark text on gold background */
  padding: 80px 20px;
  text-align: center;
}

.page-promo__cta-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: #0A2239;
}

.page-promo__cta-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #333333;
}

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

.page-promo__cta-button--primary {
  background-color: #0A2239;
  color: #FFD700;
  border: 2px solid #0A2239;
}

.page-promo__cta-button--primary:hover {
  background-color: #1a3a5a;
  color: #FFD700;
}

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

.page-promo__cta-button--secondary:hover {
  background-color: #0A2239;
  color: #FFD700;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-promo__hero-title {
    font-size: 3em;
  }
  .page-promo__hero-description {
    font-size: 1.2em;
  }
  .page-promo__section-title {
    font-size: 2.5em;
  }
}

@media (max-width: 768px) {
  .page-promo__hero-section {
    padding: 60px 0 40px;
  }
  .page-promo__hero-title {
    font-size: 2.5em;
  }
  .page-promo__hero-description {
    font-size: 1.1em;
  }
  .page-promo__cta-button {
    padding: 12px 30px;
    font-size: 1.1em;
  }
  .page-promo__section-title {
    font-size: 2em;
    margin: 40px 0 30px;
  }
  .page-promo__promo-grid,
  .page-promo__steps-grid {
    grid-template-columns: 1fr;
  }
  .page-promo__promo-image, .page-promo__promo-card img, .page-promo__step-card img, .page-promo__how-to-claim img {
    max-width: 100%;
    height: auto;
    filter: none; /* Ensure no image filters */
  }
  .page-promo__promo-card, .page-promo__step-card {
    margin-bottom: 20px;
  }
  .page-promo__cta-title {
    font-size: 2.5em;
  }
  .page-promo__cta-description {
    font-size: 1.1em;
  }
  .page-promo__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-promo__promo-image, .page-promo__promo-card .page-promo__promo-image, .page-promo__hero-image, .page-promo__promo-card img, .page-promo__step-card img, .page-promo__how-to-claim img {
    min-width: 200px;
    min-height: 200px;
    width: 100%;
    height: auto; /* Ensure images are responsive and not smaller than 200px */
    filter: none; /* Ensure no image filters */
  }
}

@media (max-width: 480px) {
  .page-promo__hero-title {
    font-size: 2em;
  }
  .page-promo__hero-description {
    font-size: 1em;
  }
  .page-promo__cta-button {
    font-size: 1em;
    padding: 10px 25px;
  }
  .page-promo__section-title {
    font-size: 1.8em;
  }
  .page-promo__cta-title {
    font-size: 2em;
  }
  .page-promo__cta-description {
    font-size: 1em;
  }
}

/* Ensure all images within .page-promo are at least 200px wide/high and no filters */
.page-promo img {
  filter: none;
}

.page-promo__promo-card img,
.page-promo__hero-section img,
.page-promo__how-to-claim img {
  min-width: 200px;
  min-height: 200px;
  object-fit: cover; /* Ensure images fill their space */
  filter: none; /* Explicitly prevent filters */
}