.page-promo {
  color: #333333; /* Dark text for light body background */
}

.page-promo__hero-section {
  position: relative;
  padding-top: var(--header-offset, 120px); /* Account for fixed header */
  background-color: #000000; /* Dark background for hero text contrast */
  color: #ffffff;
  text-align: center;
  overflow: hidden; /* Ensure image doesn't overflow */
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

.page-promo__hero-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

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

.page-promo__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.page-promo__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  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.3em;
  margin-bottom: 30px;
  line-height: 1.6;
  color: #ffffff;
}

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

.page-promo__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  white-space: nowrap;
  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--login {
  background-color: #FCBC45;
  color: #000000;
}

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

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

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

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

.page-promo__why-choose-section,
.page-promo__types-section,
.page-promo__how-to-claim-section,
.page-promo__security-section,
.page-promo__faq-section,
.page-promo__cta-section {
  padding: 60px 0;
  background-color: #f8f8f8;
}

.page-promo__why-choose-section:nth-of-type(even),
.page-promo__how-to-claim-section:nth-of-type(even),
.page-promo__faq-section:nth-of-type(even) {
    background-color: #ffffff;
}

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

.page-promo__feature-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

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

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

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

.page-promo__promo-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.page-promo__promo-card-image {
  width: 100%;
  height: 220px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}

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

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

.page-promo__promo-card-description {
  font-size: 0.95em;
  line-height: 1.5;
  color: #666666;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promo__button--small {
  padding: 10px 20px;
  font-size: 0.9em;
  border-radius: 5px;
  background-color: #FCBC45;
  color: #000000;
  align-self: flex-start;
}

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

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

.page-promo__step-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-promo__step-number {
  width: 60px;
  height: 60px;
  background-color: #000000;
  color: #FCBC45;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

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

.page-promo__step-description {
  font-size: 1em;
  line-height: 1.5;
  color: #666666;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promo__button--register-step,
.page-promo__button--deposit-step,
.page-promo__button--claim-step {
  padding: 12px 25px;
  font-size: 1em;
  border-radius: 6px;
  background-color: #000000;
  color: #FFFFFF;
}

.page-promo__button--register-step:hover,
.page-promo__button--deposit-step:hover,
.page-promo__button--claim-step:hover {
  background-color: #333333;
}

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

.page-promo__security-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

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

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

.page-promo__faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-promo__faq-item {
  background-color: #ffffff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

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

.page-promo__faq-answer {
  font-size: 1em;
  line-height: 1.6;
  color: #666666;
  display: none; /* Hidden by default, toggled by JS */
}

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

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

.page-promo__cta-section {
  background-color: #000000;
  color: #ffffff;
  text-align: center;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.page-promo__cta-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2; /* Subtle background image */
  z-index: 1;
}

.page-promo__cta-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

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

.page-promo__cta-description {
  font-size: 1.2em;
  line-height: 1.6;
  margin-bottom: 40px;
  color: #f0f0f0;
}

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

.page-promo__button--large {
  padding: 18px 35px;
  font-size: 1.2em;
  border-radius: 10px;
}

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

@media (max-width: 768px) {
  .page-promo__hero-section {
    min-height: 400px;
    padding: 30px 15px;
  }
  .page-promo__hero-title {
    font-size: 2.2em;
  }
  .page-promo__hero-description {
    font-size: 1em;
  }
  .page-promo__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-promo__button {
    width: 100%;
  }
  .page-promo__section-title {
    font-size: 2em;
  }
  .page-promo__section-intro {
    font-size: 1em;
  }
  .page-promo__container {
    padding: 30px 15px;
  }
  .page-promo__promo-cards-grid,
  .page-promo__features-grid,
  .page-promo__steps-grid,
  .page-promo__security-features {
    grid-template-columns: 1fr;
  }
  .page-promo__promo-card-image {
    height: 180px;
  }
  .page-promo__cta-title {
    font-size: 2em;
  }
  .page-promo__cta-description {
    font-size: 1em;
  }
  .page-promo__cta-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-promo__button--large {
    width: 100%;
  }

  /* Mobile content image overflow prevention */
  .page-promo img {
    max-width: 100%;
    height: auto;
  }
  .page-promo {
    overflow-x: hidden;
  }

  /* Ensure all images in content area are >= 200px and responsive */
  .page-promo__hero-image,
  .page-promo__promo-card-image,
  .page-promo__cta-image {
      min-width: 200px; /* Enforce min size for display */
      min-height: 200px; /* Enforce min size for display */
      width: 100%; /* Make responsive */
      height: auto; /* Maintain aspect ratio */
  }
}

@media (max-width: 480px) {
  .page-promo__hero-title {
    font-size: 1.8em;
  }
  .page-promo__section-title {
    font-size: 1.8em;
  }
  .page-promo__cta-title {
    font-size: 1.8em;
  }
  .page-promo__step-number {
    width: 50px;
    height: 50px;
    font-size: 1.8em;
  }
}