.page-promo {
  color: #ffffff; /* Light text for dark body background */
  padding-top: var(--header-offset, 120px); /* Ensure content clears fixed header */
}

.page-promo__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 500px; /* Minimum height for hero section */
  background-color: #1A1A1A; /* Fallback background color */
}

.page-promo__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  filter: brightness(0.6); /* Slightly darken image for text readability */
}

.page-promo__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 40px 20px;
  color: #ffffff;
}

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

.page-promo__hero-description {
  font-size: 1.3rem;
  margin-bottom: 30px;
  line-height: 1.5;
}

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

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

.page-promo__button--primary {
  background-color: #FFD700;
  color: #1A1A1A;
  border: 2px solid #FFD700;
}

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

.page-promo__button--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-promo__button--secondary:hover {
  background-color: #FFD700;
  color: #1A1A1A;
  transform: translateY(-2px);
}

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

.page-promo__section-title {
  font-size: 2.5rem;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-promo__paragraph {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
}

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

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

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

.page-promo__card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  border-bottom: 3px solid #FFD700;
}

.page-promo__card-title {
  font-size: 1.6rem;
  color: #FFD700;
  padding: 20px;
  margin-bottom: 0;
}

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

.page-promo__card-title a:hover {
  color: #e6c200;
}

.page-promo__card-description {
  font-size: 1rem;
  line-height: 1.6;
  padding: 0 20px 20px;
  flex-grow: 1;
}

.page-promo__button--small {
  padding: 10px 20px;
  font-size: 0.9rem;
  margin: 0 20px 20px;
}

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

.page-promo__claim-steps li {
  background-color: #1A1A1A;
  border-left: 5px solid #FFD700;
  padding: 20px 25px;
  margin-bottom: 15px;
  border-radius: 8px;
  font-size: 1.1rem;
  line-height: 1.6;
}

.page-promo__step-title {
  color: #FFD700;
  font-size: 1.3rem;
  margin-bottom: 10px;
}

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

.page-promo__tips-list li {
  background-color: #1A1A1A;
  border-left: 5px solid #FFD700;
  padding: 20px 25px;
  margin-bottom: 15px;
  border-radius: 8px;
  font-size: 1.1rem;
  line-height: 1.6;
}

.page-promo__tip-title {
  color: #FFD700;
  font-size: 1.3rem;
  margin-bottom: 10px;
}

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

.page-promo__faq-question {
  font-size: 1.4rem;
  color: #FFD700;
  margin-bottom: 15px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-promo__faq-question::after {
  content: '+';
  font-size: 1.8rem;
  color: #FFD700;
  transition: transform 0.3s ease;
}

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

.page-promo__faq-answer {
  font-size: 1rem;
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}

.page-promo__faq-answer.open {
  max-height: 500px; /* Sufficient height for content */
}

.page-promo__cta-section {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, #1A1A1A, #0F0F0F);
  border-top: 5px solid #FFD700;
}

.page-promo__cta-section .page-promo__section-title {
  margin-bottom: 25px;
}

.page-promo__cta-section .page-promo__paragraph {
  max-width: 800px;
  margin: 0 auto 30px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-promo__hero-title {
    font-size: 3rem;
  }
  .page-promo__hero-description {
    font-size: 1.2rem;
  }
  .page-promo__section-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .page-promo__hero-section {
    min-height: 400px;
    padding: 40px 15px;
  }
  .page-promo__hero-image {
    max-width: 100%;
    height: auto;
  }
  .page-promo__hero-title {
    font-size: 2.5rem;
  }
  .page-promo__hero-description {
    font-size: 1rem;
  }
  .page-promo__button {
    padding: 12px 25px;
    font-size: 1rem;
  }
  .page-promo__section-title {
    font-size: 2rem;
  }
  .page-promo__paragraph,
  .page-promo__card-description,
  .page-promo__claim-steps li,
  .page-promo__tips-list li,
  .page-promo__faq-answer {
    font-size: 0.95rem;
  }
  .page-promo__card-image {
    height: 200px;
  }
  .page-promo__card-title {
    font-size: 1.4rem;
  }
  .page-promo__faq-question {
    font-size: 1.2rem;
  }
  .page-promo__content-container {
    padding: 30px 15px;
  }
  .page-promo__promo-cards-grid {
    grid-template-columns: 1fr;
  }
  /* Ensure all content images in mobile are responsive and don't overflow */
  .page-promo img {
    max-width: 100%;
    height: auto;
    display: block;
  }
  .page-promo__hero-content {
    padding: 20px 15px;
  }
}

@media (max-width: 480px) {
  .page-promo__hero-title {
    font-size: 2rem;
  }
  .page-promo__hero-description {
    font-size: 0.9rem;
  }
  .page-promo__hero-cta-group {
    flex-direction: column;
  }
  .page-promo__button {
    width: 100%;
  }
  .page-promo__section-title {
    font-size: 1.8rem;
  }
  .page-promo__card-title {
    font-size: 1.2rem;
  }
  .page-promo__faq-question {
    font-size: 1.1rem;
  }
}