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

.page-promo__hero-section {
  position: relative;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
  text-align: center;
  background-color: #000000; /* Dark background for hero section */
  color: #ffffff;
  overflow: hidden;
  padding-bottom: 80px;
}

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

.page-promo__hero-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

.page-promo__hero-content {
  max-width: 800px;
  text-align: center;
}

.page-promo__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #ffffff;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

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

.page-promo__hero-buttons {
  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;
  transition: background-color 0.3s ease, transform 0.3s ease;
  font-size: 1.1em;
  text-align: center;
  white-space: nowrap;
}

.page-promo__button--primary {
  background-color: #FCBC45; /* Login button color for primary */
  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; /* Register button color for secondary */
  border: 2px solid #FFFFFF;
}

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

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

.page-promo__section-title {
  font-size: 2.8em;
  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-intro {
  font-size: 1.1em;
  line-height: 1.6;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px;
  color: #555555;
}

.page-promo__why-choose-us {
  background-color: #f8f8f8;
  padding: 80px 0;
}

.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: #ffffff;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-promo__feature-icon {
  width: 100%;
  height: 200px; /* Minimum display size */
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 8px;
}

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

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

.page-promo__featured-promotions {
  padding: 80px 0;
}

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

.page-promo__promo-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-promo__promo-image {
  width: 100%;
  height: 250px; /* Minimum display size */
  object-fit: cover;
}

.page-promo__promo-content {
  padding: 25px;
}

.page-promo__promo-title {
  font-size: 1.8em;
  color: #000000;
  margin-bottom: 15px;
  line-height: 1.3;
}

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

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

.page-promo__promo-description {
  font-size: 1em;
  line-height: 1.6;
  color: #666666;
  margin-bottom: 20px;
}

.page-promo__button--details {
  background-color: #000000;
  color: #FFFFFF;
  padding: 10px 20px;
  font-size: 0.95em;
  border: 2px solid #000000;
}

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

.page-promo__how-to-claim {
  background-color: #f8f8f8;
  padding: 80px 0;
}

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

.page-promo__step-item {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-promo__step-icon {
  width: 100%;
  height: 200px; /* Minimum display size */
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 8px;
}

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

.page-promo__step-description {
  font-size: 0.95em;
  line-height: 1.6;
  color: #666666;
  margin-bottom: 20px;
}

.page-promo__button--step {
  background-color: #FCBC45;
  color: #000000;
  padding: 10px 20px;
  font-size: 0.95em;
  border: 2px solid #FCBC45;
}

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

.page-promo__faq-section {
  padding: 80px 0;
}

.page-promo__faq-list {
  margin-top: 40px;
}

.page-promo__faq-item {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

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

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

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

.page-promo__faq-answer {
  font-size: 1em;
  line-height: 1.6;
  color: #666666;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding-top: 0;
}

.page-promo__faq-answer.active {
  max-height: 300px; /* Adjust based on expected content length */
  padding-top: 15px;
}

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

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

.page-promo__cta-section .page-promo__section-title::after {
  background-color: #FCBC45;
}

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

.page-promo__button--large {
  padding: 18px 40px;
  font-size: 1.2em;
  margin: 10px;
}

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

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

@media (max-width: 768px) {
  .page-promo__hero-section {
    padding-bottom: 60px;
  }

  .page-promo__hero-container {
    min-height: 400px;
    padding: 30px 15px;
  }

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

  .page-promo__hero-description {
    font-size: 1em;
    margin-bottom: 30px;
  }

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

  .page-promo__button {
    width: 100%;
    max-width: 300px;
  }

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

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

  .page-promo__section-intro {
    font-size: 1em;
    margin-bottom: 40px;
  }

  .page-promo__features-grid, .page-promo__promo-list, .page-promo__steps-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .page-promo__feature-icon, .page-promo__promo-image, .page-promo__step-icon {
    max-width: 100%;
    height: auto; /* Ensure images are responsive */
    min-height: 200px; /* Maintain minimum height */
  }

  .page-promo__feature-title, .page-promo__promo-title, .page-promo__step-title {
    font-size: 1.5em;
  }

  .page-promo__faq-question {
    font-size: 1.2em;
  }

  .page-promo__button--large {
    width: 100%;
    max-width: 300px;
    margin: 8px auto;
  }
}

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

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

/* Ensure all images within .page-promo are responsive and meet minimum size */
.page-promo img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

/* Content area images must not be smaller than 200px */
.page-promo__feature-icon,
.page-promo__promo-image,
.page-promo__step-icon {
  min-width: 200px;
  min-height: 200px;
}

/* Mobile specific rule to prevent content overflow */
@media (max-width: 768px) {
  .page-promo {
    overflow-x: hidden;
  }
  .page-promo img {
    max-width: 100%;
    height: auto;
  }
}