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

.page-promo__hero-section {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(255, 215, 0, 0.1) 100%);
  position: relative;
  overflow: hidden;
  padding: 60px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 600px;
}

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

.page-promo__hero-title {
  font-size: 3.5em;
  color: #FFD700;
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
  line-height: 1.2;
}

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

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

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

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

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

.page-promo__button--secondary:hover {
  background-color: rgba(255, 215, 0, 0.1);
  transform: translateY(-3px);
}

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

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

.page-promo__section-title {
  font-size: 2.8em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 20px;
  text-shadow: 0 0 5px rgba(255, 215, 0, 0.3);
}

.page-promo__section-intro {
  font-size: 1.1em;
  color: #cccccc;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
  line-height: 1.6;
}

.page-promo__featured-promotions, .page-promo__how-to-claim, .page-promo__why-choose, .page-promo__faq-section, .page-promo__call-to-action {
  padding: 80px 0;
  background-color: #0d0d0d; /* Slightly lighter dark background for contrast */
}

.page-promo__terms-overview {
  padding: 80px 0;
  background-color: #000000; /* Primary dark background */
}

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

.page-promo__promo-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  padding-bottom: 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.1);
}

.page-promo__promo-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(255, 215, 0, 0.2);
}

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

.page-promo__promo-card-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
  padding: 0 20px;
}

.page-promo__promo-card-description {
  font-size: 1em;
  color: #b0b0b0;
  line-height: 1.5;
  padding: 0 20px;
  margin-bottom: 25px;
}

.page-promo__promo-card-actions {
  display: flex;
  justify-content: center;
  gap: 15px;
  padding: 0 20px;
  flex-wrap: wrap;
}

.page-promo__button--small {
  padding: 10px 20px;
  font-size: 0.9em;
  border-radius: 6px;
}

.page-promo__button--accent {
  background-color: #FFD700;
  color: #000000;
  border-color: #FFD700;
}

.page-promo__button--accent:hover {
  background-color: #e6c200;
}

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

.page-promo__step-card {
  background-color: rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  border: 1px solid rgba(255, 215, 0, 0.15);
}

.page-promo__step-number {
  display: inline-flex;
  width: 60px;
  height: 60px;
  background-color: #FFD700;
  color: #000000;
  border-radius: 50%;
  font-size: 2em;
  font-weight: bold;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}

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

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

.page-promo__cta-bottom {
  text-align: center;
}

.page-promo__terms-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 30px auto;
  max-width: 900px;
}

.page-promo__terms-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-left: 4px solid #FFD700;
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  font-size: 1em;
  color: #f0f0f0;
  line-height: 1.6;
}

.page-promo__terms-item strong {
  color: #FFD700;
}

.page-promo__terms-conclusion {
  font-size: 1.1em;
  color: #cccccc;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

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

.page-promo__link:hover {
  text-decoration: underline;
}

.page-promo__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-promo__feature-item {
  background-color: rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  padding: 30px 20px;
  border: 1px solid rgba(255, 215, 0, 0.15);
}

.page-promo__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  /* No filter applied, original colors maintained */
}

.page-promo__feature-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-promo__feature-description {
  font-size: 0.95em;
  color: #b0b0b0;
  line-height: 1.5;
}

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

.page-promo__faq-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 215, 0, 0.1);
}

.page-promo__faq-question {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 15px;
  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.5em;
  color: #FFD700;
  transition: transform 0.3s ease;
}

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

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

.page-promo__faq-item.active .page-promo__faq-answer {
  max-height: 500px; /* Arbitrary large value to allow content to expand */
  padding-top: 15px;
}

.page-promo__faq-conclusion {
  font-size: 1.1em;
  color: #cccccc;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.page-promo__call-to-action {
  background: linear-gradient(90deg, #000000 0%, #330000 50%, #000000 100%);
  text-align: center;
  padding: 100px 20px;
}

.page-promo__button--hero {
  padding: 18px 40px;
  font-size: 1.3em;
  border-radius: 10px;
  background-color: #FFD700;
  color: #000000;
  border: 2px solid #FFD700;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
}

.page-promo__button--hero:hover {
  background-color: #e6c200;
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.8);
}

/* 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 {
    min-height: 500px;
    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: 80%;
  }
  .page-promo__container {
    padding: 30px 15px;
  }
  .page-promo__section-title {
    font-size: 1.8em;
  }
  .page-promo__section-intro {
    font-size: 0.95em;
    margin-bottom: 30px;
  }
  .page-promo__featured-promotions, .page-promo__how-to-claim, .page-promo__why-choose, .page-promo__faq-section, .page-promo__call-to-action, .page-promo__terms-overview {
    padding: 60px 0;
  }
  .page-promo__promo-card-image, .page-promo__feature-icon {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Enforce minimum size for content images */
    min-height: 200px; /* Enforce minimum size for content images */
  }
  .page-promo__promo-card-image {
    height: 200px;
  }
  .page-promo__promo-card-title {
    font-size: 1.5em;
  }
  .page-promo__step-title {
    font-size: 1.4em;
  }
  .page-promo__faq-question {
    font-size: 1.2em;
  }
  .page-promo__button--hero {
    font-size: 1.1em;
    padding: 15px 30px;
  }
  /* Mobile content area images must not overflow */
  .page-promo img {
    max-width: 100%;
    height: auto;
  }
  .page-promo {
    overflow-x: hidden;
  }
}

@media (max-width: 480px) {
  .page-promo__hero-title {
    font-size: 2em;
  }
  .page-promo__section-title {
    font-size: 1.6em;
  }
  .page-promo__promo-card-actions {
    flex-direction: column;
    gap: 10px;
  }
  .page-promo__button--small {
    width: 100%;
  }
  .page-promo__step-number {
    width: 50px;
    height: 50px;
    font-size: 1.8em;
  }
  .page-promo__feature-icon {
    width: 60px;
    height: 60px;
  }
}