.page-promo {
  color: #333333; /* Dark text for light background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
}

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

.page-promo__hero-section {
  position: relative;
  background-color: #000000;
  padding: 0;
  overflow: hidden;
}

.page-promo__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7); /* Darken image slightly for text readability */
}

.page-promo__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #FFFFFF;
  z-index: 10;
  max-width: 900px;
  width: 90%;
  padding: 20px;
  box-sizing: border-box;
}

.page-promo__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FCBC45; /* Login button color for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  font-weight: bold;
}

.page-promo__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #FFFFFF;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

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

.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;
  border: none;
  cursor: pointer;
}

.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: #e0a73b;
  transform: translateY(-2px);
}

.page-promo__button--primary {
  background-color: #FCBC45;
  color: #000000;
}

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

.page-promo__button--view-details, .page-promo__button--claim, .page-promo__button--action {
  background-color: #000000;
  color: #FFFFFF;
  padding: 10px 20px;
  font-size: 1em;
  border-radius: 5px;
}

.page-promo__button--view-details:hover, .page-promo__button--claim:hover, .page-promo__button--action:hover {
  background-color: #333333;
  transform: translateY(-1px);
}

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

.page-promo__section-text {
  font-size: 1.1em;
  color: #333333;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
}

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

.page-promo__promo-card {
  background-color: #FFFFFF;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.page-promo__card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

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

.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;
}

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

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

.page-promo__list-item {
  background-color: #f9f9f9;
  border-left: 5px solid #000000;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: background-color 0.3s ease;
}

.page-promo__list-item:hover {
  background-color: #f0f0f0;
}

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

.page-promo__list-description {
  font-size: 1em;
  color: #555555;
  margin-bottom: 25px;
}

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

.page-promo__step-item {
  background-color: #FFFFFF;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease;
}

.page-promo__step-item:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

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

.page-promo__step-description {
  font-size: 1em;
  color: #555555;
  margin-bottom: 20px;
}

.page-promo__link {
  color: #000000;
  text-decoration: underline;
}

.page-promo__link:hover {
  color: #FCBC45;
}

.page-promo__why-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

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

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

.page-promo__why-description {
  font-size: 1em;
  color: #555555;
}

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

.page-promo__faq-item {
  background-color: #FFFFFF;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-promo__faq-question {
  font-size: 1.2em;
  color: #000000;
  padding: 20px 25px;
  cursor: pointer;
  position: relative;
  margin: 0;
  font-weight: bold;
}

.page-promo__faq-question::after {
  content: '+';
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

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

.page-promo__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 1em;
  color: #555555;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

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

.page-promo__cta-section {
  position: relative;
  background-color: #000000;
  padding: 60px 20px;
  text-align: center;
  overflow: hidden;
  margin-top: 60px;
  border-radius: 12px;
}

.page-promo__cta-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4); /* Darken image for text readability */
  z-index: 1;
}

.page-promo__cta-content {
  position: relative;
  z-index: 2;
  color: #FFFFFF;
  max-width: 800px;
  margin: 0 auto;
}

.page-promo__cta-title {
  font-size: 2.8em;
  color: #FCBC45;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-promo__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

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

@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-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-promo__button {
    width: 100%;
    padding: 12px 20px;
  }
  .page-promo__container {
    padding: 0 15px;
  }
  .page-promo__section-title {
    font-size: 2em;
  }
  .page-promo__section-text {
    font-size: 0.95em;
  }
  .page-promo__promo-grid, .page-promo__promo-list, .page-promo__why-list {
    grid-template-columns: 1fr;
  }
  .page-promo__card-image {
    height: 200px;
  }
  .page-promo__card-title {
    font-size: 1.5em;
  }
  .page-promo__list-title, .page-promo__step-title, .page-promo__why-title {
    font-size: 1.3em;
  }
  .page-promo__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-promo__faq-question::after {
    right: 20px;
  }
  .page-promo__cta-section {
    padding: 40px 15px;
  }
  .page-promo__cta-title {
    font-size: 2em;
  }
  .page-promo__cta-description {
    font-size: 1em;
  }

  /* Critical: Prevent horizontal overflow for images */
  .page-promo img {
    max-width: 100% !important;
    height: auto !important;
  }
}

@media (max-width: 480px) {
  .page-promo__hero-title {
    font-size: 2em;
  }
  .page-promo__hero-description {
    font-size: 0.9em;
  }
  .page-promo__section-title {
    font-size: 1.8em;
  }
  .page-promo__cta-title {
    font-size: 1.8em;
  }
  .page-promo__button {
    font-size: 1em;
  }
}