.page-promo {
  color: #333333; /* Dark text for 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__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #000080; /* Auxiliary color for background if image is not full bleed */
}

.page-promo__hero-container {
  position: relative;
  max-width: 1920px; /* Max width for hero content */
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-promo__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-promo__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 128, 0.6); /* Dark blue overlay with transparency */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
  box-sizing: border-box;
  color: #ffffff;
}

.page-promo__hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: #FFD700; /* Gold primary color */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  font-weight: bold;
}

.page-promo__hero-description {
  font-size: clamp(1rem, 2vw, 1.4rem);
  max-width: 800px;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-promo__hero-cta-group {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.page-promo__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: background-color 0.3s ease, transform 0.2s ease;
  white-space: nowrap;
}

.page-promo__cta-button--primary {
  background-color: #FFD700; /* Gold */
  color: #000080; /* Dark blue text */
  border: 2px solid #FFD700;
}

.page-promo__cta-button--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-promo__cta-button--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text */
  border: 2px solid #FFD700;
}

.page-promo__cta-button--secondary:hover {
  background-color: #FFD700;
  color: #000080;
  transform: translateY(-2px);
}

.page-promo__overview-section,
.page-promo__featured-promotions,
.page-promo__how-to-claim-section,
.page-promo__why-jili77-section,
.page-promo__faq-section,
.page-promo__final-cta-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

.page-promo__section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: #000080; /* Dark blue */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-promo__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-promo__section-intro {
  font-size: 1.15rem;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 30px;
  color: #555555;
}

.page-promo__section-text {
  font-size: 1rem;
  text-align: justify;
  max-width: 900px;
  margin: 0 auto 20px;
  color: #555555;
}

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

.page-promo__promotion-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promo__promotion-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-promo__card-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}

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

.page-promo__card-title {
  font-size: 1.6rem;
  color: #000080; /* Dark blue */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promo__card-description {
  font-size: 0.95rem;
  color: #666666;
  margin-bottom: 20px;
  flex-grow: 1;
}

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

.page-promo__card-features li {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="%23FFD700"><path 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: 8px;
  color: #444444;
  font-size: 0.9rem;
}

.page-promo__how-to-claim-section .page-promo__cta-final {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

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

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

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

.page-promo__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #FFD700; /* Gold */
  color: #000080; /* Dark blue */
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-promo__step-title {
  font-size: 1.4rem;
  color: #000080;
  margin-bottom: 10px;
}

.page-promo__step-description {
  font-size: 0.95rem;
  color: #666666;
}

.page-promo__why-jili77-section {
  background-color: #000080; /* Dark blue background */
  color: #ffffff;
  padding: 60px 20px;
  margin: 60px auto;
  border-radius: 12px;
}

.page-promo__why-jili77-section .page-promo__section-title {
  color: #FFD700; /* Gold title */
}

.page-promo__why-jili77-section .page-promo__section-title::after {
  background-color: #ffffff;
}

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

.page-promo__benefit-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  transition: background-color 0.3s ease;
}

.page-promo__benefit-card:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.page-promo__benefit-title {
  font-size: 1.5rem;
  color: #FFD700; /* Gold */
  margin-bottom: 15px;
}

.page-promo__benefit-description {
  font-size: 0.95rem;
  color: #f0f0f0;
}

.page-promo__faq-section {
  margin-bottom: 60px;
}

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

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

.page-promo__faq-question {
  font-size: 1.1rem;
  color: #000080;
  padding: 20px 25px;
  margin: 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

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

.page-promo__faq-question.active {
  background-color: #f0f0f0;
}

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

.page-promo__faq-answer {
  font-size: 0.95rem;
  color: #666666;
  padding: 0 25px 20px;
  margin: 0;
  display: none;
}

.page-promo__final-cta-section {
  background-color: #f0f0f0;
  padding: 60px 20px;
  text-align: center;
  border-radius: 12px;
}

.page-promo__final-cta-section .page-promo__section-title {
  color: #000080;
  margin-bottom: 20px;
}

.page-promo__final-cta-section .page-promo__section-title::after {
  background-color: #FFD700;
}

.page-promo__final-cta-section .page-promo__section-intro {
  color: #555555;
  margin-bottom: 40px;
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-promo__hero-overlay {
    padding: 15px;
  }

  .page-promo__hero-title {
    font-size: 2.2rem;
  }

  .page-promo__hero-description {
    font-size: 1rem;
  }

  .page-promo__cta-button {
    width: 100%;
    text-align: center;
    padding: 12px 20px;
    font-size: 1rem;
  }

  .page-promo__hero-cta-group,
  .page-promo__how-to-claim-section .page-promo__cta-final,
  .page-promo__cta-group {
    flex-direction: column;
    gap: 15px;
  }

  .page-promo__overview-section,
  .page-promo__featured-promotions,
  .page-promo__how-to-claim-section,
  .page-promo__why-jili77-section,
  .page-promo__faq-section,
  .page-promo__final-cta-section {
    margin: 40px auto;
    padding: 0 15px;
  }

  .page-promo__section-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .page-promo__card-image {
    height: 200px;
  }

  .page-promo__promotion-card,
  .page-promo__step-card,
  .page-promo__benefit-card {
    margin-bottom: 20px;
  }

  /* Ensure images in content area are responsive and not too small */
  .page-promo__promotion-card img,
  .page-promo__how-to-claim-section img,
  .page-promo__why-jili77-section img,
  .page-promo__faq-section img,
  .page-promo__final-cta-section img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Enforce minimum size */
    min-height: 200px; /* Enforce minimum size */
  }
}

/* General image rules for content area to prevent small icons */
.page-promo img {
  min-width: 200px;
  min-height: 200px;
  display: block; /* Ensure it respects width/height properly */
  object-fit: cover; /* Maintain aspect ratio and cover area */
}

/* Specific override for hero image if needed to ensure it scales correctly */
.page-promo__hero-image {
  min-width: unset; /* Hero image can be larger, managed by its container */
  min-height: unset;
}