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

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

.page-promo__hero-section {
  position: relative;
  background-color: #003366;
  padding: 80px 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px; /* Ensure hero section has a minimum height */
}

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

.page-promo__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #ffffff;
  max-width: 800px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 10px;
}

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

.page-promo__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
}

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

.page-promo__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  font-size: 1.1em;
  min-width: 200px; /* Ensure buttons are not too small */
}

.page-promo__button--primary {
  background-color: #FFCC00;
  color: #003366;
  border: 2px solid #FFCC00;
}

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

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

.page-promo__button--secondary:hover {
  background-color: rgba(255, 204, 0, 0.1);
  transform: translateY(-2px);
}

.page-promo__button--small {
  padding: 10px 20px;
  font-size: 0.9em;
  min-width: 120px;
}

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

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

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

.page-promo__featured-section,
.page-promo__how-to-claim-section,
.page-promo__faq-section {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.page-promo__featured-section {
  background-color: #ffffff;
}

.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: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  padding-bottom: 30px;
  transition: transform 0.3s ease;
}

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

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

.page-promo__card-title {
  font-size: 1.5em;
  color: #003366;
  margin-bottom: 15px;
  padding: 0 20px;
}

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

.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: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}

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

.page-promo__step-icon {
  font-size: 2.5em;
  font-weight: bold;
  color: #FFCC00;
  background-color: #003366;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  box-shadow: 0 0 0 5px rgba(255, 204, 0, 0.3);
}

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

.page-promo__step-text {
  color: #666666;
  margin-bottom: 25px;
}

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

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

.page-promo__faq-question {
  font-size: 1.2em;
  color: #003366;
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #eeeeee;
  margin: 0;
}

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

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

.page-promo__faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

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

.page-promo__faq-answer p {
  margin-bottom: 15px;
  color: #555555;
}

.page-promo__faq-answer .page-promo__button {
  margin-top: 10px;
  margin-bottom: 10px;
}

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

@media (max-width: 768px) {
  .page-promo__hero-section {
    min-height: 400px;
    padding: 60px 0;
  }
  .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__button {
    width: 100%;
    max-width: 300px;
  }
  .page-promo__promo-grid,
  .page-promo__steps-grid {
    grid-template-columns: 1fr;
  }
  .page-promo__card-image {
    height: 200px;
  }
  .page-promo__featured-section,
  .page-promo__how-to-claim-section,
  .page-promo__faq-section {
    padding: 60px 0;
  }

  /* Critical: Prevent content overflow for images */
  .page-promo img {
    max-width: 100%;
    height: auto;
  }
  .page-promo {
    overflow-x: hidden;
  }
  .page-promo__container {
    padding: 0 15px;
  }
}

@media (max-width: 480px) {
  .page-promo__hero-title {
    font-size: 2em;
  }
  .page-promo__section-title {
    font-size: 1.8em;
  }
  .page-promo__button {
    font-size: 1em;
    padding: 12px 25px;
  }
  .page-promo__card-title {
    font-size: 1.3em;
  }
  .page-promo__faq-question {
    font-size: 1.1em;
  }
}

/* Ensure content area images are not too small */
.page-promo__promo-card img, .page-promo__step-card img {
  min-width: 200px;
  min-height: 200px;
}

/* Ensure no filter is applied to images */
.page-promo img {
  filter: none !important;
}