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

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

.page-promo__hero-section {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  text-align: center;
  padding: 0;
}

.page-promo__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.6); /* Slightly darken image for text readability, not changing color */
}

.page-promo__hero-container {
  position: relative;
}

.page-promo__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  max-width: 800px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay for text readability */
  border-radius: 10px;
}

.page-promo__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-promo__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-promo__section-title {
  font-size: 2.8em;
  color: #0A0A0A;
  text-align: center;
  margin-bottom: 20px;
  padding-top: 40px;
}

.page-promo__section-description {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-promo__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #0A0A0A;
  padding: 15px 30px;
  border-radius: 5px;
  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__cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-promo__cta-button--bottom {
  margin-top: 40px;
}

.page-promo__overview-section,
.page-promo__detail-list-section,
.page-promo__how-to-claim-section,
.page-promo__terms-section,
.page-promo__faq-section,
.page-promo__download-cta-section {
  padding: 60px 0;
}

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

.page-promo__promo-card,
.page-promo__detail-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.page-promo__card-title,
.page-promo__detail-card-title {
  font-size: 1.6em;
  color: #0A0A0A;
  margin: 20px 15px 10px;
}

.page-promo__card-title a,
.page-promo__detail-card-title a {
  color: #0A0A0A;
  text-decoration: none;
}

.page-promo__card-title a:hover,
.page-promo__detail-card-title a:hover {
  color: #FFD700;
}

.page-promo__card-text,
.page-promo__detail-card-description {
  font-size: 1em;
  color: #555555;
  padding: 0 15px 20px;
  flex-grow: 1;
}

.page-promo__card-button,
.page-promo__detail-button {
  display: inline-block;
  background-color: #0A0A0A;
  color: #FFD700;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin-bottom: 20px;
  transition: background-color 0.3s ease;
}

.page-promo__card-button:hover,
.page-promo__detail-button:hover {
  background-color: #333333;
  color: #FFD700;
}

.page-promo__steps-list {
  list-style: none;
  counter-reset: step-counter;
  padding: 0;
  max-width: 900px;
  margin: 40px auto 0;
}

.page-promo__step-item {
  background-color: #f9f9f9;
  border: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 25px;
  position: relative;
  padding-left: 70px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-promo__step-item::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #FFD700;
  color: #0A0A0A;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2em;
}

.page-promo__step-title {
  font-size: 1.4em;
  color: #0A0A0A;
  margin-bottom: 10px;
}

.page-promo__step-text {
  color: #555555;
}

.page-promo__step-text a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-promo__step-text a:hover {
  text-decoration: underline;
}

.page-promo__terms-content {
  background-color: #f9f9f9;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  margin-top: 40px;
}

.page-promo__terms-content p {
  margin-bottom: 15px;
  color: #444444;
}

.page-promo__terms-list {
  list-style: disc inside;
  margin-bottom: 20px;
  padding-left: 20px;
}

.page-promo__terms-list li {
  margin-bottom: 10px;
  color: #444444;
}

.page-promo__terms-list strong {
  color: #0A0A0A;
}

.page-promo__secondary-button {
  display: inline-block;
  background-color: #0A0A0A;
  color: #FFD700;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-promo__secondary-button:hover {
  background-color: #333333;
}

.page-promo__faq-accordion {
  max-width: 900px;
  margin: 40px auto 0;
}

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

.page-promo__faq-question {
  background-color: #FFD700;
  color: #0A0A0A;
  width: 100%;
  text-align: left;
  padding: 18px 25px;
  border: none;
  cursor: pointer;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-promo__faq-question::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

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

.page-promo__faq-question:hover {
  background-color: #e6c200;
}

.page-promo__faq-answer {
  padding: 0 25px;
  background-color: #ffffff;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

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

.page-promo__faq-answer p {
  margin: 0;
  color: #555555;
}

.page-promo__download-cta-section {
  background-color: #0A0A0A;
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
}

.page-promo__download-cta-section .page-promo__section-title {
  color: #FFD700;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promo__hero-title {
    font-size: 2.8em;
  }
  .page-promo__hero-description {
    font-size: 1.1em;
  }
  .page-promo__section-title {
    font-size: 2.2em;
  }
  .page-promo__promo-grid,
  .page-promo__detail-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-promo {
    padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
  }
  .page-promo__hero-content {
    max-width: 90%;
    padding: 15px;
  }
  .page-promo__hero-title {
    font-size: 2em;
    margin-bottom: 15px;
  }
  .page-promo__hero-description {
    font-size: 1em;
    margin-bottom: 20px;
  }
  .page-promo__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-promo__section-title {
    font-size: 1.8em;
    padding-top: 30px;
  }
  .page-promo__section-description {
    font-size: 0.95em;
    margin-bottom: 30px;
  }
  .page-promo__overview-section,
  .page-promo__detail-list-section,
  .page-promo__how-to-claim-section,
  .page-promo__terms-section,
  .page-promo__faq-section,
  .page-promo__download-cta-section {
    padding: 40px 0;
  }
  .page-promo__promo-grid,
  .page-promo__detail-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-promo__card-image, .page-promo__detail-image {
    height: 200px; /* Ensure minimum height on mobile */
  }
  /* Mobile content area images must not overflow */
  .page-promo img {
    max-width: 100%;
    height: auto;
  }
  .page-promo__step-item {
    padding: 20px;
    padding-left: 60px;
  }
  .page-promo__step-item::before {
    width: 35px;
    height: 35px;
    font-size: 1.1em;
    left: 15px;
  }
  .page-promo__step-title {
    font-size: 1.2em;
  }
  .page-promo__terms-content {
    padding: 20px;
  }
  .page-promo__faq-question {
    font-size: 1em;
    padding: 15px 20px;
  }
  .page-promo__faq-answer.open {
    padding: 10px 20px;
  }
}

@media (max-width: 480px) {
  .page-promo__hero-title {
    font-size: 1.8em;
  }
  .page-promo__hero-description {
    font-size: 0.9em;
  }
  .page-promo__cta-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-promo__section-title {
    font-size: 1.6em;
  }
  .page-promo__faq-question {
    font-size: 0.95em;
  }
}