.page-promo {
  color: #333333;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensures content starts below fixed header */
}

.page-promo__hero-section {
  position: relative;
  overflow: hidden;
  background-color: #0056b3; /* Darker blue for contrast */
  color: #ffffff;
  padding: 0;
}

.page-promo__hero-container {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

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

.page-promo__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  max-width: 900px;
  padding: 20px;
  z-index: 1;
}

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

.page-promo__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-promo__hero-button {
  display: inline-block;
  background-color: #ffc107;
  color: #0056b3;
  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;
}

.page-promo__hero-button:hover {
  background-color: #e0a800;
  transform: translateY(-2px);
}

.page-promo__overview-section,
.page-promo__featured-promo-section,
.page-promo__vip-section,
.page-promo__how-to-claim-section,
.page-promo__terms-section,
.page-promo__detail-pages-section,
.page-promo__faq-section {
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.page-promo__overview-title,
.page-promo__featured-promo-title,
.page-promo__vip-title,
.page-promo__how-to-claim-title,
.page-promo__terms-title,
.page-promo__detail-pages-title,
.page-promo__faq-title {
  font-size: 2.5em;
  color: #007bff;
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
}

.page-promo__overview-text,
.page-promo__vip-description,
.page-promo__terms-description {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  color: #555555;
}

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

.page-promo__category-card,
.page-promo__step-card {
  background-color: #f8f9fa;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-promo__category-card:hover,
.page-promo__step-card:hover {
  transform: translateY(-5px);
}

.page-promo__category-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 5px;
  margin-bottom: 20px;
}

.page-promo__category-card-title,
.page-promo__step-title {
  font-size: 1.5em;
  color: #007bff;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promo__category-card-description,
.page-promo__step-description {
  font-size: 1em;
  color: #666666;
  margin-bottom: 20px;
}

.page-promo__category-button,
.page-promo__step-button,
.page-promo__featured-promo-button,
.page-promo__featured-promo-register-button,
.page-promo__vip-button,
.page-promo__vip-join-button,
.page-promo__terms-button,
.page-promo__detail-card-button,
.page-promo__faq-support-button {
  display: inline-block;
  background-color: #007bff;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  margin-top: 10px;
}

.page-promo__category-button:hover,
.page-promo__step-button:hover,
.page-promo__featured-promo-button:hover,
.page-promo__featured-promo-register-button:hover,
.page-promo__vip-button:hover,
.page-promo__vip-join-button:hover,
.page-promo__terms-button:hover,
.page-promo__detail-card-button:hover,
.page-promo__faq-support-button:hover {
  background-color: #0056b3;
}

.page-promo__featured-promo-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
}

.page-promo__featured-promo-image {
  flex: 1 1 45%;
  min-width: 300px;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}

.page-promo__featured-promo-text {
  flex: 1 1 50%;
  min-width: 300px;
}

.page-promo__featured-promo-subtitle {
  font-size: 2em;
  color: #ffc107;
  margin-bottom: 15px;
}

.page-promo__featured-promo-description {
  font-size: 1.1em;
  color: #555555;
  margin-bottom: 20px;
}

.page-promo__featured-promo-list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-promo__featured-promo-list li {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path fill="%23007bff" d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>') no-repeat left center;
  background-size: 20px;
  padding-left: 30px;
  margin-bottom: 10px;
  color: #444444;
}

.page-promo__featured-promo-register-button {
  background-color: #ffc107;
  color: #007bff;
  margin-left: 15px;
}

.page-promo__featured-promo-register-button:hover {
  background-color: #e0a800;
}

.page-promo__vip-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  margin-top: 30px;
  margin-bottom: 30px;
}

.page-promo__vip-button,
.page-promo__vip-join-button {
  margin: 0 10px;
}

.page-promo__vip-join-button {
  background-color: #ffc107;
  color: #007bff;
}

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

.page-promo__step-number {
  display: inline-block;
  background-color: #007bff;
  color: #ffffff;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  font-size: 1.5em;
  font-weight: bold;
  margin-bottom: 15px;
}

.page-promo__terms-button {
  margin: 0 10px;
}

.page-promo__terms-button--secondary {
  background-color: #6c757d;
}

.page-promo__terms-button--secondary:hover {
  background-color: #5a6268;
}

.page-promo__detail-card {
  background-color: #f8f9fa;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
}

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

.page-promo__detail-card-title a {
  text-decoration: none;
  color: inherit;
}

.page-promo__detail-card-title a:hover {
  text-decoration: underline;
}

.page-promo__detail-card-description {
  font-size: 1em;
  color: #666666;
  margin-bottom: 15px;
}

.page-promo__faq-item {
  background-color: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 15px;
  border-left: 5px solid #ffc107;
}

.page-promo__faq-question {
  font-size: 1.3em;
  color: #007bff;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-promo__faq-answer {
  font-size: 1em;
  color: #555555;
}

.page-promo__faq-support-button {
  display: block;
  width: fit-content;
  margin: 30px auto 0 auto;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-promo__hero-title {
    font-size: 2.8em;
  }
  .page-promo__hero-description {
    font-size: 1.1em;
  }
  .page-promo__overview-title,
  .page-promo__featured-promo-title,
  .page-promo__vip-title,
  .page-promo__how-to-claim-title,
  .page-promo__terms-title,
  .page-promo__detail-pages-title,
  .page-promo__faq-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-promo {
    padding-top: var(--header-offset, 120px);
  }
  .page-promo__hero-title {
    font-size: 2.2em;
  }
  .page-promo__hero-description {
    font-size: 1em;
  }
  .page-promo__hero-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-promo__overview-section,
  .page-promo__featured-promo-section,
  .page-promo__vip-section,
  .page-promo__how-to-claim-section,
  .page-promo__terms-section,
  .page-promo__detail-pages-section,
  .page-promo__faq-section {
    margin: 20px auto;
    padding: 15px;
  }
  .page-promo__featured-promo-content {
    flex-direction: column;
  }
  .page-promo__featured-promo-image,
  .page-promo__featured-promo-text {
    flex: 1 1 100%;
    min-width: unset;
  }
  .page-promo__featured-promo-button,
  .page-promo__featured-promo-register-button {
    display: block;
    width: 100%;
    margin-left: 0;
    margin-bottom: 10px;
  }
  .page-promo__vip-button,
  .page-promo__vip-join-button,
  .page-promo__terms-button {
    display: block;
    width: 100%;
    margin: 10px 0;
  }
  .page-promo__category-grid,
  .page-promo__steps-grid {
    grid-template-columns: 1fr;
  }
  .page-promo__category-image {
    height: 180px;
  }

  /* Ensure all content images within .page-promo are responsive */
  .page-promo img {
    max-width: 100%;
    height: auto;
  }
  .page-promo__hero-image {
    filter: brightness(0.5); /* Darken more for mobile readability */
  }
  .page-promo__hero-content {
    width: 90%;
  }
}