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

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

/* Hero Section */
.page-promo__hero-section {
  position: relative;
  overflow: hidden;
  background-color: #002060; /* Primary color background for contrast */
  color: #ffffff;
  padding: 0;
  text-align: center;
}

.page-promo__hero-container {
  position: relative;
  max-width: 1920px; /* Max width for the container inside hero */
  margin: 0 auto;
}

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

.page-promo__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  max-width: 900px;
  padding: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-promo__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Auxiliary color for emphasis */
  line-height: 1.2;
}

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

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

/* General Section Styling */
.page-promo__section-title {
  font-size: 2.8em;
  color: #002060;
  text-align: center;
  margin-bottom: 25px;
  padding-top: 60px;
}

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

/* Card Grid */
.page-promo__cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 60px;
}

.page-promo__card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  padding-bottom: 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.page-promo__card-title {
  font-size: 1.6em;
  color: #002060;
  margin: 25px 15px 15px 15px;
}

.page-promo__card-text {
  font-size: 1em;
  color: #666666;
  margin: 0 20px 25px 20px;
}

/* Buttons */
.page-promo__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  font-size: 1.1em;
  cursor: pointer;
}

.page-promo__btn--primary {
  background-color: #FFD700;
  color: #002060;
  border: 2px solid #FFD700;
}

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

.page-promo__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-promo__btn--secondary:hover {
  background-color: #FFD700;
  color: #002060;
  transform: translateY(-2px);
}

.page-promo__btn--card {
  background-color: #002060;
  color: #FFD700;
  border: 2px solid #002060;
  padding: 12px 25px;
  font-size: 1em;
}

.page-promo__btn--card:hover {
  background-color: #FFD700;
  color: #002060;
  border-color: #FFD700;
}

/* VIP Rewards Section */
.page-promo__vip-rewards-section {
  background-color: #f8f8f8;
  padding: 80px 0;
}

.page-promo__content-flex {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-top: 50px;
}

.page-promo__text-content {
  flex: 1;
}

.page-promo__image-content {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-promo__image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  min-width: 200px; /* Ensure minimum size */
  min-height: 200px; /* Ensure minimum size */
}

.page-promo__sub-title {
  font-size: 2em;
  color: #002060;
  margin-bottom: 20px;
}

.page-promo__paragraph {
  font-size: 1.1em;
  color: #555555;
  margin-bottom: 25px;
}

.page-promo__list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-promo__list-item {
  font-size: 1.05em;
  color: #444444;
  margin-bottom: 12px;
  padding-left: 30px;
  position: relative;
}

.page-promo__list-item::before {
  content: '★'; /* Star icon */
  color: #FFD700;
  position: absolute;
  left: 0;
  font-size: 1.2em;
  line-height: 1;
}

/* How to Claim Section */
.page-promo__how-to-claim-section {
  padding: 80px 0;
}

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

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

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

.page-promo__step-icon {
  background-color: #002060;
  color: #FFD700;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2em;
  font-weight: bold;
  margin: 0 auto 25px auto;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

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

.page-promo__step-text {
  font-size: 1em;
  color: #666666;
}

.page-promo__step-text a {
  color: #002060;
  text-decoration: underline;
}

.page-promo__step-text a:hover {
  color: #FFD700;
}

.page-promo__claim-action {
  text-align: center;
  margin-top: 60px;
}

/* Terms & Conditions Section */
.page-promo__terms-conditions-section {
  background-color: #002060;
  color: #ffffff;
  padding: 80px 0;
}

.page-promo__terms-conditions-section .page-promo__section-title {
  color: #FFD700;
}

.page-promo__terms-conditions-section .page-promo__paragraph {
  color: #f0f0f0;
  max-width: 900px;
  margin: 0 auto 40px auto;
  text-align: center;
}

.page-promo__terms-actions {
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-promo__terms-actions .page-promo__btn--secondary {
  color: #FFD700;
  border-color: #FFD700;
}

.page-promo__terms-actions .page-promo__btn--secondary:hover {
  background-color: #FFD700;
  color: #002060;
}

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

.page-promo__faq-item {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
  margin-bottom: 20px;
  padding: 25px;
}

.page-promo__faq-question {
  font-size: 1.4em;
  color: #002060;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-promo__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2em;
  color: #FFD700;
}

.page-promo__faq-answer {
  font-size: 1.05em;
  color: #666666;
  display: none; /* Hidden by default, toggled by JS */
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #eeeeee;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promo__hero-title {
    font-size: 3em;
  }
  .page-promo__section-title {
    font-size: 2.2em;
  }
  .page-promo__content-flex {
    flex-direction: column;
    gap: 30px;
  }
  .page-promo__image-content {
    order: -1; /* Image first on smaller screens */
  }
}

@media (max-width: 768px) {
  .page-promo__hero-title {
    font-size: 2.5em;
  }
  .page-promo__hero-description {
    font-size: 1em;
  }
  .page-promo__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-promo__section-title {
    font-size: 1.8em;
    padding-top: 40px;
  }
  .page-promo__section-intro {
    font-size: 0.95em;
    margin-bottom: 40px;
  }
  .page-promo__card-title {
    font-size: 1.4em;
  }
  .page-promo__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-promo__sub-title {
    font-size: 1.8em;
  }
  .page-promo__paragraph {
    font-size: 1em;
  }
  .page-promo__list-item {
    font-size: 0.95em;
  }
  .page-promo__steps-grid {
    grid-template-columns: 1fr;
  }
  .page-promo__faq-question {
    font-size: 1.2em;
  }
  .page-promo__faq-answer {
    font-size: 0.95em;
  }
  .page-promo__terms-actions {
    flex-direction: column;
  }

  /* Critical: Prevent mobile overflow for all images in content area */
  .page-promo img {
    max-width: 100%;
    height: auto;
  }
}