.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 is below fixed header */
}

.page-promo__hero-section {
  position: relative;
  overflow: hidden;
  color: #FFFFFF;
  padding: 0;
}

.page-promo__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-promo__hero-container {
  position: relative;
  max-width: 1920px; /* Max width for the hero section */
  margin: 0 auto;
}

.page-promo__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;\  transform: translate(-50%, -50%);
  text-align: center;
  max-width: 800px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.7); /* Semi-transparent black overlay for text readability */
  border-radius: 10px;
}

.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.5);
}

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

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

.page-promo__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  white-space: nowrap;
}

.page-promo__button--primary {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
}

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

.page-promo__button--secondary {
  background-color: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}

.page-promo__button--secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

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

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

.page-promo__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FCBC45;
  margin: 10px auto 0;
  border-radius: 2px;
}

.page-promo__section-description {
  font-size: 1.1em;
  color: #555555;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}

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

.page-promo__promo-card {
  background-color: #FFFFFF;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  min-height: 200px; /* Ensure card content is not too small */
}

.page-promo__promo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-promo__card-image {
  width: 100%;
  height: 250px; /* Fixed height for consistent card image display */
  object-fit: cover;
  display: block;
}

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

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

.page-promo__card-text {
  font-size: 1em;
  color: #666666;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promo__button--card {
  background-color: #FCBC45;
  color: #000000;
  border: none;
  text-align: center;
  width: 100%;
  padding: 10px 15px;
  font-size: 1em;
}

.page-promo__button--card:hover {
  background-color: #e0a53a;
}

.page-promo__how-to-claim {
  background-color: #f9f9f9;
  border-radius: 10px;
}

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

.page-promo__step-item {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

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

.page-promo__step-title {
  font-size: 1.4em;
  color: #000000;
  margin-bottom: 10px;
  position: relative;
  padding-left: 40px;
}

.page-promo__step-title::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #FCBC45;
  color: #000000;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1em;
  font-weight: bold;
}

.page-promo__step-text {
  color: #666666;
  font-size: 1em;
}

.page-promo__step-text a {
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
}

.page-promo__step-text a:hover {
  text-decoration: underline;
}

.page-promo__cta-button-wrapper {
  text-align: center;
  margin-top: 50px;
}

.page-promo__button--large {
  padding: 15px 35px;
  font-size: 1.2em;
}

.page-promo__terms-conditions {
  background-color: #f0f0f0;
  border-radius: 10px;
}

.page-promo__terms-list {
  list-style: disc;
  padding-left: 40px;
  color: #555555;
  margin-top: 40px;
}

.page-promo__term-item {
  margin-bottom: 10px;
  font-size: 1em;
}

.page-promo__faq {
  background-color: #FFFFFF;
}

.page-promo__faq-item {
  border-bottom: 1px solid #eee;
  padding: 20px 0;
}

.page-promo__faq-item:last-child {
  border-bottom: none;
}

.page-promo__faq-question {
  font-size: 1.3em;
  color: #000000;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-promo__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  color: #FCBC45;
  transition: transform 0.3s ease;
}

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

.page-promo__faq-answer {
  color: #666666;
  font-size: 1em;
  display: none;
  padding-top: 10px;
}

.page-promo__faq-answer.active {
  display: block;
}

.page-promo__final-cta {
  background-color: #000000;
  color: #FFFFFF;
  padding: 80px 20px;
  text-align: center;
  border-radius: 10px;
}

.page-promo__final-cta .page-promo__section-title {
  color: #FFFFFF;
}

.page-promo__final-cta .page-promo__section-title::after {
  background-color: #FCBC45;
}

.page-promo__final-cta .page-promo__section-description {
  color: #f0f0f0;
}

.page-promo__final-cta .page-promo__hero-actions {
  margin-top: 40px;
}

.page-promo__final-cta .page-promo__button--secondary {
  color: #FCBC45;
  border-color: #FCBC45;
}

.page-promo__final-cta .page-promo__button--secondary:hover {
  background-color: rgba(252, 188, 69, 0.2);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promo__hero-title {
    font-size: 2.5em;
  }
  .page-promo__hero-description {
    font-size: 1.1em;
  }
  .page-promo__section-title {
    font-size: 2em;
  }
  .page-promo__grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .page-promo__promo-card {
    min-height: auto;
  }
}

@media (max-width: 768px) {
  .page-promo {
    padding-top: var(--header-offset, 80px); /* Adjust for smaller mobile header */
  }
  .page-promo__hero-content {
    max-width: 90%;
    padding: 15px;
  }
  .page-promo__hero-title {
    font-size: 2em;
    margin-bottom: 15px;
  }
  .page-promo__hero-description {
    font-size: 1em;
    margin-bottom: 20px;
  }
  .page-promo__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-promo__button {
    width: 100%;
    padding: 10px 20px;
  }
  .page-promo__content-area {
    padding: 40px 15px;
  }
  .page-promo__section-title {
    font-size: 1.8em;
  }
  .page-promo__section-description {
    font-size: 0.95em;
    margin-bottom: 30px;
  }
  .page-promo__card-image {
    height: 200px;
  }
  .page-promo__card-title {
    font-size: 1.3em;
  }
  .page-promo__card-text {
    font-size: 0.9em;
  }
  .page-promo__steps-list {
    grid-template-columns: 1fr;
  }
  .page-promo__step-item {
    padding: 25px;
  }
  .page-promo__step-title {
    font-size: 1.2em;
  }
  .page-promo__faq-question {
    font-size: 1.1em;
  }
  .page-promo__faq-answer {
    font-size: 0.95em;
  }
  .page-promo__final-cta {
    padding: 60px 15px;
  }

  /* Critical: Ensure all images within .page-promo are responsive and don't overflow */
  .page-promo img {
    max-width: 100%;
    height: auto;
    display: block;
  }

  /* Ensure content area does not cause horizontal scroll */
  .page-promo__content-area {
    overflow-x: hidden;
  }
}

@media (max-width: 480px) {
  .page-promo__hero-title {
    font-size: 1.8em;
  }
  .page-promo__hero-description {
    font-size: 0.9em;
  }
  .page-promo__section-title {
    font-size: 1.6em;
  }
  .page-promo__button--large {
    font-size: 1.1em;
  }
}