.page-promo {
  color: #333333; /* Default text color for light body background */
  line-height: 1.6;
  font-family: Arial, sans-serif;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

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

.page-promo__section-title {
  font-size: 2.5rem;
  color: #003366;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-promo__section-intro {
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #555555;
}

.page-promo__cta-button {
  display: inline-block;
  background-color: #FFCC00; /* Gold */
  color: #003366; /* Dark Blue */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid #FFCC00;
}

.page-promo__cta-button:hover {
  background-color: #e6b800; /* Darker Gold */
  transform: translateY(-2px);
}

.page-promo__cta-button--large {
  padding: 18px 35px;
  font-size: 1.2rem;
}

/* Hero Section */
.page-promo__hero-section {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  text-align: center;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.page-promo__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 40px 20px;
  background-color: rgba(0, 51, 102, 0.7); /* Dark blue overlay */
  border-radius: 12px;
}

.page-promo__hero-title {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: #FFCC00; /* Gold */
  font-weight: 900;
  line-height: 1.2;
}

.page-promo__hero-description {
  font-size: 1.3rem;
  margin-bottom: 40px;
  color: #f0f0f0;
}

/* Current Promotions Section */
.page-promo__current-promos {
  padding: 80px 0;
  background-color: #f8f8f8;
}

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

.page-promo__promo-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__promo-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

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

.page-promo__card-title {
  font-size: 1.8rem;
  color: #003366;
  padding: 20px 25px 10px;
  font-weight: bold;
}

.page-promo__card-text {
  font-size: 1rem;
  color: #555555;
  padding: 0 25px 20px;
  flex-grow: 1;
}

.page-promo__card-button {
  display: block;
  background-color: #CC0000; /* Red for action */
  color: #ffffff;
  padding: 12px 25px;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  border-radius: 0 0 12px 12px;
  transition: background-color 0.3s ease;
}

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

/* How to Claim Section */
.page-promo__how-to-claim {
  padding: 80px 0;
  background-color: #ffffff;
}

.page-promo__claim-steps {
  list-style: none;
  padding: 0;
  counter-reset: step-counter;
  max-width: 800px;
  margin: 0 auto 40px;
}

.page-promo__step-item {
  position: relative;
  padding: 20px 0 20px 70px;
  font-size: 1.1rem;
  border-bottom: 1px solid #eeeeee;
  color: #333333;
}

.page-promo__step-item:last-child {
  border-bottom: none;
}

.page-promo__step-item::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: #003366; /* Dark Blue */
  color: #FFCC00; /* Gold */
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
}

/* VIP Rewards Section */
.page-promo__vip-rewards {
  padding: 80px 0;
  background-color: #003366; /* Dark Blue */
  color: #ffffff;
}

.page-promo__vip-rewards .page-promo__section-title {
  color: #FFCC00; /* Gold */
}

.page-promo__vip-rewards .page-promo__section-intro {
  color: #f0f0f0;
}

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

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

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

.page-promo__feature-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 50%; /* Make icons circular if desired */
  border: 3px solid #FFCC00; /* Gold border */
}

.page-promo__feature-title {
  font-size: 1.5rem;
  color: #FFCC00;
  margin-bottom: 10px;
  font-weight: bold;
}

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

.page-promo__vip-outro {
  text-align: center;
  margin-top: 50px;
  font-size: 1.1rem;
  color: #f0f0f0;
}

/* Why Choose Section */
.page-promo__why-choose {
  padding: 80px 0;
  background-color: #fefefe;
}

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

.page-promo__advantage-item {
  background-color: #ffffff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promo__advantage-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.page-promo__advantage-icon {
  width: 200px;
  height: 200px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-promo__advantage-title {
  font-size: 1.6rem;
  color: #003366;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-promo__advantage-description {
  font-size: 1rem;
  color: #555555;
}

/* FAQ Section */
.page-promo__faq-section {
  padding: 80px 0;
  background-color: #f8f8f8;
}

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

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

.page-promo__accordion-header {
  width: 100%;
  background-color: #003366; /* Dark Blue */
  color: #FFCC00; /* Gold */
  padding: 20px 25px;
  text-align: left;
  font-size: 1.2rem;
  font-weight: bold;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.page-promo__accordion-header:hover {
  background-color: #002244;
}

.page-promo__accordion-header::after {
  content: '+';
  font-size: 1.5rem;
  color: #FFCC00;
  transition: transform 0.3s ease;
}

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

.page-promo__accordion-content {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-promo__accordion-content p {
  padding: 15px 0;
  color: #555555;
  font-size: 1rem;
}

.page-promo__accordion-header.active + .page-promo__accordion-content {
  max-height: 200px; /* Adjust as needed for content length */
  padding-bottom: 25px;
}

/* Final CTA Section */
.page-promo__final-cta {
  padding: 80px 0;
  background-color: #003366; /* Dark Blue */
  color: #ffffff;
  text-align: center;
}

.page-promo__final-cta .page-promo__section-title {
  color: #FFCC00; /* Gold */
}

.page-promo__final-cta .page-promo__section-intro {
  color: #f0f0f0;
  margin-bottom: 50px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promo__hero-title {
    font-size: 3rem;
  }
  .page-promo__hero-description {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .page-promo {
    padding-top: var(--header-offset, 80px); /* Adjust for smaller header on mobile */
  }
  .page-promo__hero-title {
    font-size: 2.2rem;
  }
  .page-promo__hero-description {
    font-size: 1rem;
  }
  .page-promo__cta-button {
    padding: 12px 25px;
    font-size: 1rem;
  }
  .page-promo__cta-button--large {
    padding: 15px 30px;
    font-size: 1.1rem;
  }
  .page-promo__section-title {
    font-size: 2rem;
  }
  .page-promo__section-intro {
    font-size: 0.95rem;
  }
  .page-promo__promo-grid,
  .page-promo__vip-features,
  .page-promo__advantages-list {
    grid-template-columns: 1fr;
  }
  .page-promo__card-title {
    font-size: 1.5rem;
  }
  .page-promo__step-item {
    font-size: 1rem;
    padding-left: 60px;
  }
  .page-promo__step-item::before {
    width: 40px;
    height: 40px;
    font-size: 1.3rem;
  }
  .page-promo__feature-title,
  .page-promo__advantage-title {
    font-size: 1.3rem;
  }
  .page-promo__accordion-header {
    font-size: 1.1rem;
    padding: 15px 20px;
  }
  .page-promo__accordion-content p {
    font-size: 0.95rem;
  }

  /* Ensure images do not overflow on mobile */
  .page-promo img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-promo__hero-content {
    padding: 20px 15px;
  }
  .page-promo__hero-title {
    font-size: 1.8rem;
  }
  .page-promo__hero-description {
    font-size: 0.9rem;
  }
  .page-promo__cta-button {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  .page-promo__section-title {
    font-size: 1.8rem;
  }
  .page-promo__promo-card {
    margin-left: 10px;
    margin-right: 10px;
  }
  .page-promo__container {
    padding: 0 15px;
  }
}