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

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

.page-promo__hero-section {
  position: relative;
  overflow: hidden;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
  background: linear-gradient(135deg, #8B0000, #FFD700);
}

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

.page-promo__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 15px;
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

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

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

.page-promo__cta-button {
  display: inline-block;
  background: #FFD700;
  color: #8B0000;
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.4em;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

.page-promo__cta-button:hover {
  background: #fff;
  color: #B22222;
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 12px 25px rgba(255, 215, 0, 0.6);
}

.page-promo__overview-section,
.page-promo__promotions-grid,
.page-promo__how-to-claim,
.page-promo__terms-section,
.page-promo__faq-section,
.page-promo__cta-final-section {
  padding: 80px 0;
  background-color: #333;
}

.page-promo__overview-section {
  background-color: #1a1a1a;
  text-align: center;
}

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

.page-promo__section-text {
  font-size: 1.1em;
  line-height: 1.8;
  color: #e0e0e0;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 30px auto;
}

.page-promo__secondary-cta-button {
  display: inline-block;
  background: #8B0000;
  color: #FFD700;
  padding: 12px 30px;
  border-radius: 40px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(139, 0, 0, 0.4);
}

.page-promo__secondary-cta-button:hover {
  background: #B22222;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(139, 0, 0, 0.6);
}

.page-promo__grid-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 60px;
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
}

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

.page-promo__promo-card {
  background-color: #1a1a1a;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

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

.page-promo__card-content {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-promo__card-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
  flex-shrink: 0;
}

.page-promo__card-description {
  font-size: 1em;
  line-height: 1.7;
  color: #e0e0e0;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-promo__card-button {
  display: inline-block;
  background: #8B0000;
  color: #FFD700;
  padding: 10px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 1em;
  font-weight: bold;
  text-align: center;
  transition: background 0.3s ease, color 0.3s ease;
  align-self: flex-start;
  flex-shrink: 0;
}

.page-promo__card-button:hover {
  background: #B22222;
  color: #fff;
}

.page-promo__how-to-claim {
  background-color: #1a1a1a;
}

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

.page-promo__claim-steps li {
  background-color: #333;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  position: relative;
  transition: transform 0.3s ease;
}

.page-promo__claim-steps li:hover {
  transform: translateY(-5px);
}

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

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

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

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

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

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

.page-promo__terms-section {
  background-color: #333;
}

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

.page-promo__terms-list li {
  background-color: #1a1a1a;
  border-left: 5px solid #FFD700;
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-promo__term-heading {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
}

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

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

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

.page-promo__faq-section {
  background-color: #1a1a1a;
}

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

.page-promo__faq-item {
  margin-bottom: 15px;
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 10px;
  overflow: hidden;
}

.page-promo__faq-question {
  background-color: #333;
  color: #FFD700;
  padding: 20px 30px;
  width: 100%;
  text-align: left;
  border: none;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
  position: relative;
}

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

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

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

.page-promo__faq-answer {
  background-color: #1a1a1a;
  color: #e0e0e0;
  padding: 0 30px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-promo__faq-answer p {
  padding-bottom: 20px;
  line-height: 1.7;
}

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

.page-promo__cta-final-section {
  text-align: center;
  background-color: #8B0000;
  padding: 100px 0;
  box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.7);
}

.page-promo__cta-final-section .page-promo__section-title {
  color: #FFD700;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
  font-size: 3em;
}

.page-promo__cta-final-section .page-promo__section-text {
  color: #f0f0f0;
  margin-bottom: 50px;
  font-size: 1.2em;
}

/* 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;
  }
  .page-promo__grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-promo__hero-section {
    min-height: 400px;
    padding: 30px 0;
  }
  .page-promo__hero-title {
    font-size: 2.5em;
  }
  .page-promo__hero-description {
    font-size: 1em;
  }
  .page-promo__cta-button {
    padding: 12px 30px;
    font-size: 1.2em;
  }
  .page-promo__overview-section,
  .page-promo__promotions-grid,
  .page-promo__how-to-claim,
  .page-promo__terms-section,
  .page-promo__faq-section,
  .page-promo__cta-final-section {
    padding: 60px 0;
  }
  .page-promo__section-title {
    font-size: 2em;
    margin-bottom: 30px;
  }
  .page-promo__section-text {
    font-size: 0.95em;
    margin-bottom: 25px;
  }
  .page-promo__grid {
    grid-template-columns: 1fr;
  }
  .page-promo__claim-steps {
    grid-template-columns: 1fr;
  }
  .page-promo__card-image {
    height: 200px; /* Ensure content images are not too small */
  }
  .page-promo__card-title {
    font-size: 1.6em;
  }
  .page-promo__card-description {
    font-size: 0.9em;
  }
  .page-promo__faq-question {
    font-size: 1em;
    padding: 15px 25px;
  }
  .page-promo__faq-question::after {
    right: 25px;
    font-size: 1.2em;
  }
  .page-promo__faq-answer p {
    font-size: 0.9em;
  }
  .page-promo__cta-final-section .page-promo__section-title {
    font-size: 2.5em;
  }
  .page-promo__cta-final-section .page-promo__section-text {
    font-size: 1em;
  }
  /* Ensure all images within .page-promo are responsive and don't overflow */
  .page-promo img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-promo__hero-title {
    font-size: 2em;
  }
  .page-promo__cta-button {
    font-size: 1em;
    padding: 10px 25px;
  }
  .page-promo__section-title {
    font-size: 1.8em;
  }
  .page-promo__grid {
    gap: 25px;
  }
  .page-promo__claim-steps li {
    padding: 25px;
  }
  .page-promo__step-number {
    width: 50px;
    height: 50px;
    font-size: 1.8em;
  }
  .page-promo__step-title {
    font-size: 1.3em;
  }
  .page-promo__cta-final-section .page-promo__section-title {
    font-size: 2em;
  }
}