.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 */
}

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

.page-promo__hero-section {
  position: relative;
  overflow: hidden;
  background-color: #000000; /* Dark background for hero section */
  color: #FFFFFF;
  padding: 0;
  min-height: 500px; /* Minimum height for hero */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

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

.page-promo__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 40px;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay for text */
  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.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-promo__hero-button,
.page-promo__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  cursor: pointer;
  text-align: center;
}

.page-promo__hero-button {
  background-color: #FCBC45; /* Login button color */
  color: #000000;
  font-size: 1.3em;
}

.page-promo__hero-button:hover {
  background-color: #e0a53b;
}

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

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

.page-promo__why-section,
.page-promo__how-to-claim-section,
.page-promo__featured-section,
.page-promo__app-download-section,
.page-promo__terms-section,
.page-promo__faq-section,
.page-promo__cta-final-section {
  padding: 60px 0;
  background-color: #FFFFFF;
}

.page-promo__why-section {
  background-color: #f8f8f8;
}

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

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

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

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

.page-promo__feature-image,
.page-promo__app-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
  object-fit: cover;
}

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

.page-promo__feature-text,
.page-promo__step-text {
  color: #666666;
}

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

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

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

.page-promo__claim-cta {
  text-align: center;
  margin-top: 50px;
}

.page-promo__button--primary {
  background-color: #FCBC45; /* Login button color */
  color: #000000;
}

.page-promo__button--primary:hover {
  background-color: #e0a53b;
}

.page-promo__button--secondary {
  background-color: #000000; /* Main color */
  color: #FFFFFF;
  margin-left: 15px;
}

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

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

.page-promo__promo-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
  text-align: left;
}

.page-promo__promo-image {
  width: 100%;
  height: 225px; /* Fixed height for promo card images */
  object-fit: cover;
  border-radius: 10px 10px 0 0;
  min-width: 200px;
  min-height: 200px;
}

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

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

.page-promo__promo-description {
  color: #666666;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promo__app-download-section {
  text-align: center;
  background-color: #f8f8f8;
}

.page-promo__app-image {
  max-width: 400px;
  margin: 30px auto;
}

.page-promo__terms-section .page-promo__button {
  margin-top: 30px;
}

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

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

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

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

.page-promo__cta-final-section {
  background-color: #000000; /* Main color */
  color: #FFFFFF;
  padding: 80px 0;
}

.page-promo__cta-final-section .page-promo__section-title {
  color: #FFFFFF;
}

.page-promo__cta-final-section .page-promo__section-intro {
  color: #f0f0f0;
}

.page-promo__cta-buttons {
  text-align: center;
  margin-top: 40px;
}

.page-promo__cta-buttons .page-promo__button {
  font-size: 1.2em;
  padding: 12px 25px;
  margin: 0 10px;
}

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

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

@media (max-width: 768px) {
  .page-promo__hero-title {
    font-size: 2.2em;
  }

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

  .page-promo__hero-content {
    padding: 20px;
  }

  .page-promo__hero-button {
    font-size: 1.1em;
    padding: 12px 25px;
  }

  .page-promo__section-title {
    font-size: 1.8em;
  }

  .page-promo__section-intro {
    font-size: 0.95em;
  }

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

  .page-promo__promo-image {
    height: 200px;
  }

  .page-promo__promo-title {
    font-size: 1.4em;
  }

  .page-promo__button,
  .page-promo__button--primary,
  .page-promo__button--secondary {
    display: block;
    width: 100%;
    margin: 10px 0 !important;
  }

  .page-promo__cta-buttons .page-promo__button {
    font-size: 1.1em;
    padding: 10px 20px;
  }

  /* Ensure all content area images are responsive and do not overflow */
  .page-promo img {
    max-width: 100%;
    height: auto;
  }
}

@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__feature-title,
  .page-promo__step-title {
    font-size: 1.3em;
  }

  .page-promo__promo-title {
    font-size: 1.2em;
  }
}