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

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

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

.page-promo__section-intro,
.page-promo__section-description,
.page-promo__section-text {
  font-size: 1.1em;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-promo__btn--register,
.page-promo__btn--claim,
.page-promo__btn--deposit,
.page-promo__btn--join {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-promo__btn--register:hover,
.page-promo__btn--claim:hover,
.page-promo__btn--deposit:hover,
.page-promo__btn--join:hover {
  background-color: #e0a53b;
  transform: translateY(-2px);
}

.page-promo__btn--secondary,
.page-promo__btn--details {
  background-color: #000000;
  color: #FFFFFF;
  border: 2px solid #000000;
}

.page-promo__btn--secondary:hover,
.page-promo__btn--details:hover {
  background-color: #333333;
  transform: translateY(-2px);
}

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

.page-promo__link:hover {
  text-decoration: underline;
}

/* Hero Section */
.page-promo__hero-section {
  padding: 80px 20px 40px;
  text-align: center;
  background-color: #000000;
  position: relative;
  overflow: hidden;
}

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

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

.page-promo__hero-description {
  font-size: 1.3em;
  color: #f0f0f0;
  margin-bottom: 40px;
  line-height: 1.5;
}

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

.page-promo__hero-image {
  width: 100%;
  height: auto;
  display: block;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  object-fit: cover;
  min-height: 200px; /* Ensure minimum size */
}

/* Why Choose Us Section */
.page-promo__why-choose-us-section {
  padding: 80px 0;
  background-color: #FFFFFF;
  text-align: center;
}

.page-promo__why-choose-us-section .page-promo__section-title {
  color: #000000;
}

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

.page-promo__feature-item {
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 10px;
  text-align: left;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border-top: 5px solid #FCBC45;
}

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

.page-promo__feature-text {
  font-size: 1em;
  line-height: 1.7;
  color: #555555;
}

.page-promo__why-choose-us-section .page-promo__section-image {
  margin-top: 60px;
  border-radius: 10px;
  width: 100%;
  height: auto;
  max-width: 800px;
  object-fit: cover;
  min-height: 200px; /* Ensure minimum size */
}

/* Featured Promotions Section */
.page-promo__featured-promotions-section {
  padding: 80px 0;
  background-color: #f2f2f2;
  text-align: center;
}

.page-promo__featured-promotions-section .page-promo__section-title {
  color: #000000;
}

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

.page-promo__promotion-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  text-align: left;
  display: flex;
  flex-direction: column;
  border: 1px solid #e0e0e0;
}

.page-promo__card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  min-height: 200px; /* Ensure minimum size */
}

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

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

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

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

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

.page-promo__card-content .page-promo__btn {
  margin-top: 10px;
  width: 100%;
}

.page-promo__card-content .page-promo__btn--claim {
  background-color: #FCBC45;
  color: #000000;
  margin-bottom: 10px;
}

.page-promo__card-content .page-promo__btn--details {
  background-color: #000000;
  color: #FFFFFF;
}

/* How to Claim Section */
.page-promo__how-to-claim-section {
  padding: 80px 0;
  background-color: #FFFFFF;
  text-align: center;
}

.page-promo__how-to-claim-section .page-promo__section-title {
  color: #000000;
}

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

.page-promo__step-item {
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  position: relative;
  border: 1px solid #e0e0e0;
}

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

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

.page-promo__step-text {
  font-size: 1em;
  line-height: 1.7;
  color: #555555;
  margin-bottom: 20px;
}

.page-promo__how-to-claim-section .page-promo__section-image {
  margin-top: 60px;
  border-radius: 10px;
  width: 100%;
  height: auto;
  max-width: 800px;
  object-fit: cover;
  min-height: 200px; /* Ensure minimum size */
}

/* Terms & Conditions Section */
.page-promo__terms-section {
  padding: 80px 0;
  background-color: #f2f2f2;
  text-align: center;
}

.page-promo__terms-section .page-promo__section-title {
  color: #000000;
}

/* FAQ Section */
.page-promo__faq-section {
  padding: 80px 0;
  background-color: #FFFFFF;
  text-align: center;
}

.page-promo__faq-section .page-promo__section-title {
  color: #000000;
}

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

.page-promo__faq-item {
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 10px;
  text-align: left;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border-left: 5px solid #FCBC45;
}

.page-promo__faq-question {
  font-size: 1.4em;
  color: #000000;
  margin-bottom: 15px;
  font-weight: bold;
}

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

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

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

.page-promo__cta-section .page-promo__section-description {
  color: #f0f0f0;
  margin-bottom: 40px;
}

.page-promo__cta-image {
  width: 100%;
  height: auto;
  display: block;
  max-width: 1000px;
  margin: 60px auto 0;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  object-fit: cover;
  min-height: 200px; /* Ensure minimum size */
}

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

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

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

  .page-promo__promotions-grid,
  .page-promo__faq-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  .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__hero-section,
  .page-promo__why-choose-us-section,
  .page-promo__featured-promotions-section,
  .page-promo__how-to-claim-section,
  .page-promo__terms-section,
  .page-promo__faq-section,
  .page-promo__cta-section {
    padding: 50px 0;
  }

  .page-promo__container {
    padding: 0 15px;
  }

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

  .page-promo__section-intro,
  .page-promo__section-description,
  .page-promo__section-text {
    font-size: 0.95em;
    margin-bottom: 20px;
  }

  .page-promo__btn {
    width: 100%;
  }

  /* Ensure content images do not overflow on mobile */
  .page-promo img {
    max-width: 100%;
    height: auto;
  }

  /* Content area image size enforcement */
  .page-promo__hero-image,
  .page-promo__why-choose-us-section .page-promo__section-image,
  .page-promo__card-image,
  .page-promo__how-to-claim-section .page-promo__section-image,
  .page-promo__cta-image {
    min-width: 200px; /* Enforce minimum width */
    min-height: 200px; /* Enforce minimum height */
    width: 100%; /* Ensure responsiveness */
    height: auto; /* Maintain aspect ratio */
    object-fit: cover;
  }
}

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

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

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

  .page-promo__step-number {
    width: 40px;
    height: 40px;
    font-size: 1.5em;
  }
}