.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 clears fixed header */
  background-color: #FFFFFF;
}

.page-promo__hero-section {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 80px 20px 60px;
  background-color: #000000; /* Dark background for hero text */
  color: #FFFFFF;
}

.page-promo__hero-container {
  max-width: 900px;
  margin: 0 auto;
  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; /* Make image subtle behind text */
  z-index: 0;
}

.page-promo__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  color: #FFFFFF;
}

.page-promo__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

.page-promo__hero-button {
  display: inline-block;
  background-color: #FCBC45; /* Login color for prominent button */
  color: #000000; /* Dark text for light button */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: 2px solid #FCBC45;
}

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

.page-promo__features-section,
.page-promo__types-section,
.page-promo__how-to-claim-section,
.page-promo__latest-promo-section,
.page-promo__cta-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  text-align: center;
}

.page-promo__features-title,
.page-promo__types-title,
.page-promo__how-to-claim-title,
.page-promo__latest-promo-title,
.page-promo__cta-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #000000;
}

.page-promo__types-intro-text {
  font-size: 1.1em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #555555;
}

.page-promo__features-grid,
.page-promo__promo-grid,
.page-promo__steps-container {
  display: grid;
  gap: 30px;
  margin-top: 40px;
}

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

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

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

.page-promo__feature-card,
.page-promo__promo-card,
.page-promo__step-card {
  background-color: #f8f8f8;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  height: 100%; /* Ensure cards have consistent height */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.page-promo__feature-icon {
  width: 200px; /* Enforce min size */
  height: 200px; /* Enforce min size */
  object-fit: contain;
  margin-bottom: 20px;
  filter: none; /* Ensure no filter changes image color */
  border-radius: 5px;
}

.page-promo__feature-card-title,
.page-promo__promo-card-title,
.page-promo__step-number {
  font-size: 1.8em;
  margin-bottom: 15px;
  color: #000000;
}

.page-promo__feature-card-description,
.page-promo__promo-card-description,
.page-promo__step-description {
  font-size: 1em;
  color: #555555;
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-promo__promo-image {
  width: 100%;
  height: 200px; /* Ensure images are not too small */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  filter: none; /* Ensure no filter changes image color */
}

.page-promo__promo-button,
.page-promo__claim-now-button,
.page-promo__details-button,
.page-promo__cta-button {
  display: inline-block;
  background-color: #000000; /* Main color for buttons */
  color: #FFFFFF; /* White text for dark button */
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  margin-top: 15px;
  border: 2px solid #000000;
}

.page-promo__promo-button:hover,
.page-promo__claim-now-button:hover,
.page-promo__details-button:hover,
.page-promo__cta-button:hover {
  background-color: #333333;
  transform: translateY(-2px);
}

.page-promo__latest-promo-intro {
  font-size: 1.1em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #555555;
}

.page-promo__promo-details-card {
  background-color: #000000;
  color: #FFFFFF;
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  max-width: 800px;
  margin: 40px auto 0;
}

.page-promo__details-card-title {
  font-size: 2em;
  margin-bottom: 15px;
  color: #FCBC45; /* Highlight title with login color */
}

.page-promo__details-card-title a {
  color: #FCBC45; /* Link color for title */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-promo__details-card-title a:hover {
  color: #FFFFFF;
}

.page-promo__details-card-description {
  font-size: 1.1em;
  color: #f0f0f0;
  margin-bottom: 25px;
}

.page-promo__cta-section {
  background-color: #FCBC45; /* Login color for CTA background */
  color: #000000; /* Dark text for light CTA background */
  padding: 80px 20px;
  border-radius: 10px;
  margin-top: 60px;
}

.page-promo__cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #000000;
}

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

.page-promo__cta-button {
  background-color: #000000; /* Main color for CTA button */
  color: #FFFFFF; /* White text for dark button */
  padding: 18px 35px;
  font-size: 1.2em;
  border-radius: 8px;
  border: 2px solid #000000;
}

.page-promo__cta-button:hover {
  background-color: #333333;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-promo__hero-title {
    font-size: 2.8em;
  }
  .page-promo__features-title,
  .page-promo__types-title,
  .page-promo__how-to-claim-title,
  .page-promo__latest-promo-title,
  .page-promo__cta-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-promo__hero-section {
    padding: 60px 15px 40px;
  }
  .page-promo__hero-title {
    font-size: 2.2em;
  }
  .page-promo__hero-description {
    font-size: 1em;
  }
  .page-promo__features-section,
  .page-promo__types-section,
  .page-promo__how-to-claim-section,
  .page-promo__latest-promo-section,
  .page-promo__cta-section {
    padding: 40px 15px;
  }
  .page-promo__features-title,
  .page-promo__types-title,
  .page-promo__how-to-claim-title,
  .page-promo__latest-promo-title,
  .page-promo__cta-title {
    font-size: 1.8em;
  }
  .page-promo__feature-card,
  .page-promo__promo-card,
  .page-promo__step-card {
    padding: 25px;
  }
  .page-promo__feature-icon,
  .page-promo__promo-image {
    max-width: 100%; /* Ensure images don't overflow */
    height: auto; /* Maintain aspect ratio */
    width: 100%; /* Override fixed width if any */
  }
  .page-promo__feature-card-title,
  .page-promo__promo-card-title,
  .page-promo__step-number {
    font-size: 1.5em;
  }
  .page-promo__promo-details-card {
    padding: 30px;
  }
  .page-promo__details-card-title {
    font-size: 1.6em;
  }
  .page-promo__cta-title {
    font-size: 2em;
  }
  .page-promo__cta-button {
    padding: 15px 25px;
    font-size: 1.1em;
  }
}