.page-promo {
  color: #333333; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-promo__hero-section {
  position: relative;
  padding-top: var(--header-offset, 120px); /* Ensure content clears fixed header */
  padding-bottom: 80px;
  background-color: #007bff; /* Primary brand color */
  color: #ffffff;
  text-align: center;
  overflow: hidden; /* Contains the image */
}

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

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

.page-promo__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-promo__cta-button {
  display: inline-block;
  background-color: #ffc107; /* Secondary color for CTA */
  color: #000000; /* Dark text on bright button */
  padding: 15px 30px;
  border-radius: 50px;
  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: #e0a800;
  transform: translateY(-3px);
}

.page-promo__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-top: 60px;
  margin-bottom: 30px;
  color: #007bff; /* Primary brand color */
  font-weight: bold;
}

.page-promo__section-intro {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
  padding: 0 20px;
}

.page-promo__why-choose-section {
  padding: 60px 20px;
  background-color: #f8f9fa;
}

.page-promo__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-promo__feature-card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-promo__feature-card:hover {
  transform: translateY(-10px);
}

.page-promo__feature-title {
  font-size: 1.6em;
  color: #007bff;
  margin-bottom: 15px;
}

.page-promo__feature-text {
  font-size: 1em;
  color: #555555;
}

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

.page-promo__promo-type-card {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 80px;
  background-color: #ffffff;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  padding: 30px;
}

.page-promo__promo-type-card--reverse {
  flex-direction: row-reverse;
}

.page-promo__promo-type-image {
  flex: 0 0 400px; /* Min size 400px */
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-promo__promo-type-content {
  flex: 1;
  padding: 20px 0;
}

.page-promo__promo-type-title {
  font-size: 2em;
  color: #007bff;
  margin-bottom: 15px;
}

.page-promo__promo-type-text {
  font-size: 1.1em;
  color: #444444;
  margin-bottom: 20px;
}

.page-promo__promo-list {
  list-style: disc inside;
  margin-bottom: 25px;
  padding-left: 20px;
  color: #555555;
}

.page-promo__promo-list li {
  margin-bottom: 8px;
}

.page-promo__claim-button {
  display: inline-block;
  background-color: #ffc107;
  color: #000000;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-promo__claim-button:hover {
  background-color: #e0a800;
}

.page-promo__how-to-claim-section {
  padding: 60px 20px;
  background-color: #e9f7ff;
}

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

.page-promo__step-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: 25px;
  position: relative;
  counter-increment: step-counter;
}

.page-promo__step-item::before {
  content: counter(step-counter);
  position: absolute;
  left: -20px;
  top: 20px;
  background-color: #007bff;
  color: #ffffff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8em;
  font-weight: bold;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-promo__step-title {
  font-size: 1.8em;
  color: #007bff;
  margin-left: 40px;
  margin-bottom: 10px;
}

.page-promo__step-text {
  font-size: 1.1em;
  color: #555555;
  margin-left: 40px;
}

.page-promo__step-cta {
  display: inline-block;
  margin-top: 15px;
  margin-left: 40px;
  background-color: #007bff;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  transition: background-color 0.3s ease;
}

.page-promo__step-cta:hover {
  background-color: #0056b3;
}

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

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

.page-promo__term-card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-promo__term-title {
  font-size: 1.6em;
  color: #007bff;
  margin-bottom: 15px;
}

.page-promo__term-text {
  font-size: 1em;
  color: #555555;
}

.page-promo__full-terms-link {
  text-align: center;
}

.page-promo__link-button {
  display: inline-block;
  background-color: #007bff;
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
}

.page-promo__link-button:hover {
  background-color: #0056b3;
}

.page-promo__vip-section {
  padding: 60px 20px;
  background-color: #f8f9fa;
}

.page-promo__vip-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto 50px auto;
}

.page-promo__vip-benefit-card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.page-promo__vip-title {
  font-size: 1.6em;
  color: #007bff;
  margin-bottom: 15px;
}

.page-promo__vip-text {
  font-size: 1em;
  color: #555555;
}

.page-promo__vip-cta {
  display: inline-block;
  background-color: #ffc107;
  color: #000000;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
  margin-top: 20px;
}

.page-promo__vip-cta:hover {
  background-color: #e0a800;
}

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

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

.page-promo__featured-card {
  background-color: #ffffff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-promo__featured-card:hover {
  transform: translateY(-8px);
}

.page-promo__featured-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
}

.page-promo__featured-title {
  font-size: 1.5em;
  color: #007bff;
  margin-bottom: 10px;
}

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

.page-promo__faq-section {
  padding: 60px 20px;
  background-color: #e9f7ff;
}

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

.page-promo__faq-item {
  background-color: #ffffff;
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.page-promo__faq-question {
  font-size: 1.3em;
  color: #007bff;
  padding: 20px;
  cursor: pointer;
  margin: 0;
  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-item.active .page-promo__faq-question::after {
  content: '-';
  transform: rotate(180deg);
}

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

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

.page-promo__full-faq-link {
  text-align: center;
  margin-top: 40px;
}

.page-promo__cta-section {
  padding: 60px 20px;
  text-align: center;
  background-color: #007bff;
  color: #ffffff;
}

.page-promo__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-promo__cta-button--primary {
  background-color: #ffc107;
  color: #000000;
}

.page-promo__cta-button--primary:hover {
  background-color: #e0a800;
}

.page-promo__cta-button--secondary {
  background-color: #ffffff;
  color: #007bff;
  border: 2px solid #007bff;
}

.page-promo__cta-button--secondary:hover {
  background-color: #f0f0f0;
  color: #0056b3;
  border-color: #0056b3;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-promo__hero-title {
    font-size: 3em;
  }
  .page-promo__hero-description {
    font-size: 1.15em;
  }
  .page-promo__promo-type-card {
    flex-direction: column;
    text-align: center;
  }
  .page-promo__promo-type-card--reverse {
    flex-direction: column;
  }
  .page-promo__promo-type-image {
    flex: none;
    width: 100%;
    height: 250px;
  }
  .page-promo__promo-type-content {
    padding: 20px;
  }
  .page-promo__step-item::before {
    left: 10px;
    top: 10px;
  }
  .page-promo__step-title, .page-promo__step-text, .page-promo__step-cta {
    margin-left: 0;
    padding-left: 70px; /* Adjust for counter */
    text-align: left;
  }
}

@media (max-width: 768px) {
  .page-promo__hero-title {
    font-size: 2.2em;
  }
  .page-promo__hero-description {
    font-size: 1em;
  }
  .page-promo__section-title {
    font-size: 2em;
  }
  .page-promo__feature-card, .page-promo__term-card, .page-promo__vip-benefit-card, .page-promo__featured-card {
    padding: 20px;
  }
  .page-promo__feature-title, .page-promo__term-title, .page-promo__vip-title, .page-promo__featured-title {
    font-size: 1.4em;
  }
  .page-promo__promo-type-title {
    font-size: 1.8em;
  }
  .page-promo__step-title {
    font-size: 1.5em;
  }
  .page-promo__faq-question {
    font-size: 1.1em;
    padding: 15px;
  }
  .page-promo__faq-answer {
    padding: 0 15px 15px 15px;
  }
  .page-promo__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  /* Ensure all images within .page-promo are responsive and don't overflow */
  .page-promo img {
    max-width: 100%;
    height: auto;
  }
  .page-promo__promo-type-image {
    height: 200px; /* Minimum size for content images */
  }
  .page-promo__featured-image {
    height: 200px; /* Minimum size for content images */
  }
  .page-promo__step-item::before {
    position: static;
    margin-bottom: 10px;
    width: 40px;
    height: 40px;
    font-size: 1.5em;
  }
  .page-promo__step-title, .page-promo__step-text, .page-promo__step-cta {
    padding-left: 0;
    text-align: center;
  }
  .page-promo__step-cta {
    margin-left: auto;
    margin-right: auto;
  }
}