.page-promo {
  color: #333333;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

.page-promo__section-title {
  font-size: 2.5em;
  color: #0A2342;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.page-promo__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

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

/* Hero Section */
.page-promo__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-top: var(--header-offset, 120px);
}

.page-promo__hero-container {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
}

.page-promo__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}

.page-promo__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #ffffff;
  z-index: 1;
  max-width: 90%;
}

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

.page-promo__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-promo__hero-cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #0A2342;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-promo__hero-cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

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

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

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

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

.page-promo__promotion-image {
  width: 100%;
  height: 250px;
  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.6em;
  color: #0A2342;
  margin-bottom: 15px;
  min-height: 60px; /* Ensure consistent height for titles */
}

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

.page-promo__card-button {
  display: inline-block;
  background-color: #0A2342;
  color: #ffffff;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  text-align: center;
  transition: background-color 0.3s ease;
  align-self: flex-start;
}

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

/* VIP Section */
.page-promo__vip-section {
  padding: 80px 0;
  background-color: #0A2342;
  color: #ffffff;
  text-align: center;
}

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

.page-promo__vip-section .page-promo__section-intro {
  color: #cccccc;
}

.page-promo__vip-features {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.page-promo__feature-item {
  flex-basis: 280px;
  text-align: center;
}

.page-promo__feature-icon {
  width: 200px;
  height: 150px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-promo__feature-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-promo__feature-description {
  font-size: 1em;
  color: #eeeeee;
}

.page-promo__vip-cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #0A2342;
  padding: 15px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  margin-top: 60px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-promo__vip-cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

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

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

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

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

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

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

.page-promo__step-description {
  font-size: 1em;
  color: #555555;
}

.page-promo__main-cta-button {
  display: block;
  width: fit-content;
  margin: 60px auto 0;
  background-color: #0A2342;
  color: #ffffff;
  padding: 18px 40px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.3em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.page-promo__main-cta-button:hover {
  background-color: #1a3a5e;
  transform: translateY(-5px);
}

/* Terms & FAQ Section */
.page-promo__terms-faq-section {
  padding: 80px 0;
  background-color: #f0f0f0;
}

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

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

.page-promo__faq-question {
  font-size: 1.3em;
  color: #0A2342;
  padding: 20px 25px;
  cursor: pointer;
  position: relative;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.page-promo__faq-item.active .page-promo__faq-question::after {
  transform: rotate(45deg);
}

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

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

/* Final CTA Section */
.page-promo__final-cta-section {
  padding: 80px 0;
  background-color: #FFD700;
  color: #0A2342;
  text-align: center;
}

.page-promo__final-cta-section .page-promo__section-title {
  color: #0A2342;
}

.page-promo__final-cta-section .page-promo__section-intro {
  color: #333333;
}

.page-promo__final-cta-section .page-promo__main-cta-button {
  background-color: #0A2342;
  color: #ffffff;
}

.page-promo__final-cta-section .page-promo__main-cta-button:hover {
  background-color: #1a3a5e;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promo__hero-title {
    font-size: 2.8em;
  }
  .page-promo__hero-description {
    font-size: 1.1em;
  }
  .page-promo__section-title {
    font-size: 2em;
  }
  .page-promo__promotions-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .page-promo__vip-features {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .page-promo__hero-section {
    padding-top: var(--header-offset, 80px);
  }
  .page-promo__hero-title {
    font-size: 2.2em;
  }
  .page-promo__hero-description {
    font-size: 1em;
  }
  .page-promo__hero-cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-promo__section-title {
    font-size: 1.8em;
  }
  .page-promo__section-intro {
    font-size: 0.95em;
  }
  .page-promo__promotions-grid {
    grid-template-columns: 1fr;
  }
  .page-promo__promotion-image,
  .page-promo__feature-icon {
    max-width: 100%;
    height: auto;
  }
  .page-promo__vip-features {
    flex-direction: column;
    gap: 30px;
  }
  .page-promo__step-item {
    padding: 25px;
  }
  .page-promo__step-number {
    width: 50px;
    height: 50px;
    font-size: 1.8em;
  }
  .page-promo__main-cta-button {
    padding: 15px 30px;
    font-size: 1.1em;
  }
  .page-promo__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-promo__faq-answer {
    padding: 0 20px 15px;
  }

  /* Critical: Prevent content overflow on mobile */
  .page-promo img {
    max-width: 100% !important;
    height: auto !important;
  }
}

@media (max-width: 480px) {
  .page-promo__hero-title {
    font-size: 1.8em;
  }
  .page-promo__hero-description {
    font-size: 0.9em;
  }
  .page-promo__hero-cta-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-promo__section-title {
    font-size: 1.5em;
  }
  .page-promo__card-title {
    font-size: 1.3em;
  }
  .page-promo__feature-title {
    font-size: 1.5em;
  }
  .page-promo__step-title {
    font-size: 1.3em;
  }
}