.page-promo {
  color: #333333; /* Dark text for default light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

.page-promo__hero-section {
  background-color: #1E90FF; /* Royal Blue background */
  color: #ffffff;
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
  padding-bottom: 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-promo__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 0;
}

.page-promo__hero-title {
  font-size: 3.2em;
  color: #FFD700; /* Gold for emphasis */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

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

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

.page-promo__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.2;
  filter: grayscale(100%); /* Maintain original color, but desaturate for background effect */
  object-fit: cover;
}

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

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

.page-promo__button--primary {
  background-color: #FFD700; /* Gold */
  color: #1E90FF; /* Royal Blue */
}

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

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

.page-promo__button--secondary:hover {
  background-color: #FFD700;
  color: #1E90FF;
  transform: translateY(-2px);
}

.page-promo__section-title {
  font-size: 2.5em;
  color: #1E90FF; /* Royal Blue */
  text-align: center;
  margin-bottom: 30px;
  margin-top: 60px;
  position: relative;
}

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

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

.page-promo__promotions-overview {
  padding: 60px 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);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.page-promo__promo-card img {
  max-width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 25px;
  min-width: 200px; /* Enforce min-size for content images */
  min-height: 200px;
}

.page-promo__card-title {
  font-size: 1.8em;
  color: #1E90FF; /* Royal Blue */
  margin-bottom: 15px;
}

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

.page-promo__how-to-claim {
  padding: 60px 0;
  background-color: #ffffff;
}

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

.page-promo__step-item {
  background-color: #f0f8ff; /* Light blue background */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  position: relative;
  display: flex;
  flex-direction: column;
}

.page-promo__step-number {
  background-color: #FFD700; /* Gold */
  color: #1E90FF; /* Royal Blue */
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2em;
  font-weight: bold;
  margin: -60px auto 20px auto; /* Position above card */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

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

.page-promo__step-text {
  font-size: 0.95em;
  color: #555555;
}

.page-promo__cta-bottom {
  text-align: center;
  margin-top: 50px;
}

.page-promo__terms-conditions {
  padding: 60px 0;
  background-color: #f8f8f8;
}

.page-promo__why-choose {
  padding: 60px 0;
  background-color: #ffffff;
}

.page-promo__why-choose-content {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.page-promo__why-choose-text {
  flex: 1;
}

.page-promo__why-choose-text p {
  margin-bottom: 20px;
  color: #555555;
}

.page-promo__why-choose-text ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-promo__why-choose-text li {
  background-color: #e6f7ff;
  border-left: 5px solid #1E90FF;
  padding: 10px 15px;
  margin-bottom: 10px;
  border-radius: 5px;
  color: #333333;
  font-weight: bold;
}

.page-promo__why-choose-text li strong {
  color: #1E90FF;
}

.page-promo__why-choose-image {
  flex: 1;
  text-align: center;
}

.page-promo__why-choose-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  min-width: 200px; /* Enforce min-size for content images */
  min-height: 200px;
}

.page-promo__faq-section {
  padding: 60px 0;
  background-color: #f0f8ff;
}

.page-promo__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-promo__faq-question {
  padding: 20px 25px;
  font-size: 1.2em;
  color: #1E90FF;
  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.5em;
  font-weight: bold;
  color: #FFD700;
  transition: transform 0.3s ease;
}

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

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

.page-promo__faq-answer p {
  margin: 0;
}

.page-promo__faq-answer.open {
  max-height: 200px; /* Adjust as needed */
  padding-top: 10px;
}

.page-promo__final-cta {
  background-color: #1E90FF; /* Royal Blue */
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

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

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

.page-promo__final-cta .page-promo__section-description {
  color: #ffffff;
  opacity: 0.9;
  margin-bottom: 40px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promo__hero-title {
    font-size: 2.8em;
  }

  .page-promo__section-title {
    font-size: 2em;
  }

  .page-promo__promo-card img {
    height: 200px;
  }
}

@media (max-width: 768px) {
  .page-promo__hero-section {
    padding-top: var(--header-offset, 120px);
    padding-bottom: 40px;
  }

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

  .page-promo__hero-description {
    font-size: 1.1em;
  }

  .page-promo__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-promo__button {
    width: 80%;
    margin: 0 auto;
  }

  .page-promo__section-title {
    font-size: 1.8em;
    margin-top: 40px;
    margin-bottom: 20px;
  }

  .page-promo__section-description {
    font-size: 1em;
    margin-bottom: 30px;
  }

  .page-promo__promo-grid,
  .page-promo__steps-list {
    grid-template-columns: 1fr;
  }

  .page-promo__promo-card {
    padding: 20px;
  }

  .page-promo__promo-card img {
    max-width: 100%;
    height: auto; /* Ensure image is responsive */
    min-width: 200px; /* Enforce min-size for content images */
    min-height: 200px;
  }

  .page-promo__card-title {
    font-size: 1.5em;
  }

  .page-promo__step-item {
    padding-top: 60px;
  }

  .page-promo__step-number {
    margin-top: -90px; /* Adjust for smaller screens */
  }

  .page-promo__why-choose-content {
    flex-direction: column;
  }

  .page-promo__why-choose-image img {
    max-width: 100%;
    height: auto; /* Ensure image is responsive */
    min-width: 200px; /* Enforce min-size for content images */
    min-height: 200px;
  }

  /* Ensure all images within .page-promo are responsive and not smaller than 200px */
  .page-promo img {
    max-width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 200px;
  }

  .page-promo__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }

  .page-promo__faq-answer {
    padding: 0 20px 15px 20px;
  }

  .page-promo__final-cta {
    padding: 60px 20px;
  }
}