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

.page-promo__hero-section {
  padding-top: var(--header-offset, 120px);
  background-color: #000000; /* Main color for hero background */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 60px;
  position: relative;
  overflow: hidden;
}

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

.page-promo__hero-title {
  font-size: 3.5em;
  color: #FCBC45; /* Login button color for emphasis */
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: 700;
}

.page-promo__hero-description {
  font-size: 1.3em;
  color: #FFFFFF;
  margin-bottom: 30px;
  line-height: 1.6;
}

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

.page-promo__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
  white-space: nowrap;
}

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

.page-promo__button--register:hover {
  background-color: #FCBC45;
  border-color: #FCBC45;
  transform: translateY(-3px);
}

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

.page-promo__button--login:hover {
  background-color: #FFFFFF;
  border-color: #FFFFFF;
  transform: translateY(-3px);
}

.page-promo__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.page-promo__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}

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

.page-promo__introduction-section,
.page-promo__promo-grid-section,
.page-promo__how-to-claim-section,
.page-promo__terms-section,
.page-promo__why-choose-section,
.page-promo__faq-section,
.page-promo__cta-section {
  background-color: #FFFFFF;
  padding: 60px 0;
}

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

.page-promo__text-content {
  font-size: 1.1em;
  line-height: 1.8;
  color: #333333;
  margin-bottom: 20px;
  text-align: justify;
}

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

.page-promo__promo-card {
  background-color: #F8F8F8;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.page-promo__promo-card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.page-promo__promo-card-title {
  font-size: 1.5em;
  color: #000000;
  margin: 20px 15px 10px;
  font-weight: 600;
  line-height: 1.3;
}

.page-promo__promo-card-description {
  font-size: 0.95em;
  color: #555555;
  padding: 0 15px 20px;
  line-height: 1.6;
  flex-grow: 1;
}

.page-promo__button--claim {
  background-color: #FCBC45;
  color: #000000;
  border: none;
  margin: 15px;
  width: calc(100% - 30px);
}

.page-promo__button--claim:hover {
  background-color: #E0A83A;
  transform: translateY(-3px);
}

.page-promo__claim-steps {
  list-style: none;
  counter-reset: step-counter;
  padding: 0;
  margin-top: 40px;
}

.page-promo__claim-step {
  counter-increment: step-counter;
  margin-bottom: 30px;
  position: relative;
  padding-left: 60px;
}

.page-promo__claim-step::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  background-color: #000000;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4em;
  font-weight: 700;
}

.page-promo__step-title {
  font-size: 1.4em;
  color: #000000;
  margin-bottom: 10px;
  font-weight: 600;
}

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

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

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

.page-promo__button--primary:hover {
  background-color: #FCBC45;
  border-color: #FCBC45;
  color: #000000;
  transform: translateY(-3px);
}

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

.page-promo__terms-list,
.page-promo__benefits-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-promo__terms-item,
.page-promo__benefit-item {
  background-color: #F8F8F8;
  border-left: 5px solid #000000;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  font-size: 1em;
  line-height: 1.7;
  color: #333333;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-promo__terms-item strong,
.page-promo__benefit-item strong {
  color: #000000;
}

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

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

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

.page-promo__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  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;
  color: #555555;
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
  padding: 0 0px;
}

.page-promo__faq-answer.open {
  max-height: 200px; /* Adjust as needed */
  padding: 10px 0px;
}

/* 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: 2.2em;
  }
}

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

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

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

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

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

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

  .page-promo__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-promo__text-content {
    font-size: 0.95em;
  }

  .page-promo__promo-grid {
    grid-template-columns: 1fr;
  }

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

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

  .page-promo__button--claim {
    width: calc(100% - 30px);
  }

  .page-promo__claim-step {
    padding-left: 50px;
  }

  .page-promo__claim-step::before {
    width: 35px;
    height: 35px;
    font-size: 1.2em;
  }

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

  .page-promo__button--large {
    font-size: 1.1em;
    padding: 15px 30px;
  }

  .page-promo__terms-item,
  .page-promo__benefit-item,
  .page-promo__faq-item {
    padding: 18px;
  }

  .page-promo__faq-question {
    font-size: 1.1em;
    padding-right: 25px;
  }

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

  /* Ensure images in content area are responsive and not too small */
  .page-promo__promo-card-image,
  .page-promo__hero-image {
    max-width: 100%;
    height: auto;
  }
  .page-promo img {
    max-width: 100%;
    height: auto;
  }
}

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

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

  .page-promo__button {
    padding: 12px 20px;
    font-size: 1em;
  }
}