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

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

.page-promo__hero-section {
  position: relative;
  overflow: hidden;
  color: #FFFFFF;
  padding: 80px 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px; /* Ensure hero section has a minimum height */
}

.page-promo__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  /* HTML width/height attributes are 1920x1080, which are the requested dimensions for the image. */
  /* CSS will ensure it covers the area */
}

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

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

.page-promo__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #F0F0F0;
}

.page-promo__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

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

.page-promo__button--register {
  background-color: #FFFFFF;
  color: #000000;
}

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

.page-promo__button--claim,
.page-promo__button--card,
.page-promo__button--join,
.page-promo__button--final-cta {
  background-color: #FCBC45;
  color: #000000;
}

.page-promo__button--claim:hover,
.page-promo__button--card:hover,
.page-promo__button--join:hover,
.page-promo__button--final-cta:hover {
  background-color: #E0A73F;
  transform: translateY(-2px);
}

.page-promo__overview-section,
.page-promo__featured-section,
.page-promo__how-to-claim-section,
.page-promo__terms-section,
.page-promo__faq-section,
.page-promo__cta-footer-section {
  padding: 60px 0;
  text-align: center;
}

.page-promo__overview-title,
.page-promo__featured-title,
.page-promo__how-to-claim-title,
.page-promo__terms-title,
.page-promo__faq-title,
.page-promo__cta-footer-title {
  font-size: 2.5em;
  margin-bottom: 30px;
  color: #000000;
}

.page-promo__overview-text,
.page-promo__terms-text,
.page-promo__cta-footer-description {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #333333;
}

.page-promo__overview-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  margin-top: 30px;
  min-width: 200px;
  min-height: 200px;
  /* HTML width/height attributes are 800x600 */
}

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

.page-promo__card {
  background-color: #F8F8F8;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  padding: 25px;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.3s ease;
}

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

.page-promo__card-image {
  width: 100%;
  height: 200px; /* Fixed height for consistent card image display */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
  /* HTML width/height attributes are 600x400, CSS will scale to fit and crop */
}

.page-promo__card-title {
  font-size: 1.8em;
  margin-bottom: 15px;
  color: #000000;
  text-align: left;
}

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

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

.page-promo__card-description {
  font-size: 1em;
  line-height: 1.5;
  color: #555555;
  margin-bottom: 25px;
  flex-grow: 1;
  text-align: left;
}

.page-promo__button--card {
  align-self: flex-start;
}

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

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

.page-promo__step-icon {
  width: 200px; /* Explicitly set to meet minimum size */
  height: 200px; /* Explicitly set to meet minimum size */
  object-fit: contain;
  margin-bottom: 20px;
  /* HTML width/height attributes are 400x300, but CSS overrides for display, ensuring min 200x200 */
}

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

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

.page-promo__how-to-claim-action {
  margin-top: 50px;
}

.page-promo__button--read-more {
  background-color: #000000;
  color: #FFFFFF;
  margin-top: 20px;
}

.page-promo__button--read-more:hover {
  background-color: #333333;
}

.page-promo__accordion {
  max-width: 900px;
  margin: 40px auto 0 auto;
  text-align: left;
}

.page-promo__accordion-item {
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-promo__accordion-header {
  background-color: #F0F0F0;
  padding: 20px;
  font-size: 1.2em;
  color: #000000;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.page-promo__accordion-header:hover {
  background-color: #E0E0E0;
}

.page-promo__accordion-header::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-promo__accordion-header.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-promo__accordion-content {
  padding: 0 20px;
  background-color: #FFFFFF;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}

.page-promo__accordion-content p {
  padding: 20px 0;
  line-height: 1.6;
  color: #555555;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .page-promo__hero-section {
    padding: 60px 20px;
    min-height: 400px; /* Adjust min height for mobile */
  }

  .page-promo__hero-title {
    font-size: 2.5em;
  }

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

  .page-promo__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-promo__button {
    width: 100%;
    padding: 12px 20px;
  }

  .page-promo__overview-title,
  .page-promo__featured-title,
  .page-promo__how-to-claim-title,
  .page-promo__terms-title,
  .page-promo__faq-title,
  .page-promo__cta-footer-title {
    font-size: 2em;
  }

  .page-promo__overview-text,
  .page-promo__terms-text,
  .page-promo__cta-footer-description {
    font-size: 0.95em;
  }

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

  .page-promo__card-image,
  .page-promo__step-icon {
    max-width: 100%; /* Ensure images don't overflow */
    height: auto; /* Maintain aspect ratio */
    min-width: 200px; /* Still enforce minimum size */
    min-height: 200px; /* Still enforce minimum size */
  }

  .page-promo__card-image {
    height: 180px; /* Fixed height for consistency, will object-fit */
  }

  .page-promo__accordion-header {
    font-size: 1.1em;
    padding: 15px;
  }

  /* Ensure content area images do not overflow */
  .page-promo img {
    max-width: 100%;
    height: auto;
  }
  .page-promo {
    overflow-x: hidden; /* Prevent horizontal scroll */
  }
}