.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); /* Ensures 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: 60px 20px;
  background-color: #000000; /* Dark background for hero text */
  color: #FFFFFF;
  text-align: center;
  overflow: hidden;
}

.page-promo__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.4; /* Slightly dim the image for text readability */
}

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

.page-promo__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FCBC45; /* Login button color for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-promo__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #FFFFFF;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

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

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

.page-promo__offers-grid,
.page-promo__latest-offers-details,
.page-promo__how-to-claim,
.page-promo__faq-section,
.page-promo__cta-section {
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
  background-color: #FFFFFF; /* Light background for content sections */
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.page-promo__section-title {
  font-size: 2.5em;
  color: #000000;
  text-align: center;
  margin-bottom: 15px;
}

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

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

.page-promo__offer-card,
.page-promo__step-card {
  background-color: #f9f9f9;
  border: 1px solid #eeeeee;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-promo__offer-card:hover,
.page-promo__step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.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,
.page-promo__step-title {
  font-size: 1.5em;
  color: #000000;
  margin-bottom: 15px;
}

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

.page-promo__card-button,
.page-promo__step-button {
  display: inline-block;
  background-color: #FCBC45; /* Login button color */
  color: #000000; /* Dark text for bright button */
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  margin-top: auto; /* Push button to bottom */
}

.page-promo__card-button:hover,
.page-promo__step-button:hover {
  background-color: #e0a53b;
  transform: translateY(-1px);
}

.page-promo__detail-list {
  margin-top: 30px;
}

.page-promo__detail-item {
  background-color: #f0f0f0;
  border-left: 5px solid #FCBC45;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
}

.page-promo__detail-title {
  font-size: 1.8em;
  color: #000000;
  margin-bottom: 10px;
}

.page-promo__detail-link {
  text-decoration: none;
  color: #000000;
  transition: color 0.3s ease;
}

.page-promo__detail-link:hover {
  color: #FCBC45;
}

.page-promo__detail-description {
  color: #555555;
  margin-bottom: 15px;
}

.page-promo__detail-button {
  display: inline-block;
  background-color: #000000; /* Main color */
  color: #FFFFFF;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  transition: background-color 0.3s ease;
  align-self: flex-start; /* Align button to start */
}

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

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

.page-promo__faq-item {
  background-color: #f9f9f9;
  border: 1px solid #eeeeee;
  border-radius: 8px;
  padding: 20px 25px;
  margin-bottom: 15px;
}

.page-promo__faq-question {
  font-size: 1.2em;
  color: #000000;
  margin-bottom: 10px;
}

.page-promo__faq-answer {
  color: #555555;
  font-size: 0.95em;
}

.page-promo__cta-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #000000; /* Dark background for CTA */
  color: #FFFFFF;
  padding: 60px 20px;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}

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

.page-promo__cta-container {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.page-promo__cta-title {
  font-size: 2.8em;
  color: #FCBC45; /* Login button color */
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-promo__cta-description {
  font-size: 1.2em;
  color: #FFFFFF;
  margin-bottom: 30px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-promo__cta-button {
  display: inline-block;
  background-color: #FCBC45; /* Login button color */
  color: #000000; /* Dark text for bright button */
  padding: 15px 35px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.15em;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .page-promo__hero-title {
    font-size: 2.5em;
  }

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

  .page-promo__section-title,
  .page-promo__cta-title {
    font-size: 2em;
  }

  .page-promo__grid-container,
  .page-promo__steps-container {
    grid-template-columns: 1fr;
  }

  .page-promo__offer-card,
  .page-promo__step-card,
  .page-promo__faq-item {
    padding: 20px;
  }

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

  .page-promo__card-title,
  .page-promo__step-title {
    font-size: 1.3em;
  }

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

  .page-promo__hero-section,
  .page-promo__cta-section {
    padding: 40px 15px;
  }

  .page-promo__offers-grid,
  .page-promo__latest-offers-details,
  .page-promo__how-to-claim,
  .page-promo__faq-section,
  .page-promo__cta-section {
    margin: 20px auto;
    padding: 15px;
  }

  /* Ensure all content area images are responsive and not smaller than 200px */
  .page-promo img {
    max-width: 100%;
    height: auto; /* This ensures images don't overflow */
    min-width: 200px; /* Enforce minimum width for content images */
    min-height: 200px; /* Enforce minimum height for content images */
    object-fit: cover; /* Maintain aspect ratio and cover space */
  }

  .page-promo__card-image,
  .page-promo__cta-image,
  .page-promo__hero-image {
    min-width: unset; /* Allow these specific images to scale down */
    min-height: unset;
  }

  .page-promo__card-image {
    height: 180px; /* Specific height for card images on mobile */
  }
}