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

.page-promo__hero-section {
  position: relative;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
  background-color: #1A2E40; /* Dark blue background for hero */
  color: #ffffff;
  text-align: center;
  overflow: hidden;
  padding-bottom: 0; /* Image extends to bottom */
}

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

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

.page-promo__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-promo__hero-image {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 1;
  opacity: 0.6; /* Slightly transparent to let background color show */
  object-fit: cover;
  max-height: 500px; /* Limit image height to prevent excessive overlap */
}

.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.3s ease;
  white-space: nowrap;
}

.page-promo__button--primary {
  background-color: #FFD700; /* Gold */
  color: #1A2E40; /* Dark blue text */
  border: 2px solid #FFD700;
}

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

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

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

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

.page-promo__section-title {
  font-size: 2.8em;
  color: #1A2E40;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

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

.page-promo__overview-section,
.page-promo__claim-guide-section,
.page-promo__tips-section,
.page-promo__faq-section {
  background-color: #f4f4f4;
  padding: 60px 0;
}

.page-promo__types-section,
.page-promo__cta-section {
  background-color: #e0e0e0; /* Slightly darker background for contrast */
  padding: 60px 0;
}

.page-promo__features-grid,
.page-promo__promo-grid,
.page-promo__steps-grid,
.page-promo__tips-grid {
  display: grid;
  gap: 30px;
}

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

.page-promo__feature-card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.page-promo__feature-title {
  font-size: 1.8em;
  color: #1A2E40;
  margin-bottom: 15px;
}

.page-promo__feature-text {
  color: #555555;
  font-size: 1em;
}

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

.page-promo__promo-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.page-promo__promo-title {
  font-size: 2em;
  color: #1A2E40;
  margin: 0 20px 15px;
}

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

.page-promo__button--small {
  padding: 10px 20px;
  font-size: 0.9em;
  margin-bottom: 20px;
}

.page-promo__steps-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.page-promo__step-card {
  background-color: #ffffff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.page-promo__step-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.page-promo__step-title {
  font-size: 1.6em;
  color: #1A2E40;
  margin-bottom: 10px;
}

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

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

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

.page-promo__tip-card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-promo__tip-title {
  font-size: 1.8em;
  color: #1A2E40;
  margin-bottom: 15px;
}

.page-promo__tip-text {
  color: #555555;
  font-size: 1em;
}

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

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

.page-promo__faq-question {
  font-size: 1.5em;
  color: #1A2E40;
  margin-bottom: 10px;
  cursor: pointer;
}

.page-promo__faq-answer {
  color: #555555;
  font-size: 1em;
  display: none; /* Hidden by default, toggled by JS */
}

.page-promo__faq-question.active + .page-promo__faq-answer {
  display: block;
}

.page-promo__cta-section {
  background-color: #1A2E40;
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
  padding-bottom: 0; /* Image extends to bottom */
}

.page-promo__cta-section .page-promo__container {
  position: relative;
  z-index: 2;
  padding-bottom: 40px;
}

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

.page-promo__cta-section .page-promo__section-description {
  color: #f0f0f0;
}

.page-promo__cta-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.page-promo__cta-image {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 1;
  opacity: 0.4; /* Slightly transparent */
  object-fit: cover;
  max-height: 400px;
}

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

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

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

  .page-promo__hero-container {
    padding: 60px 20px 30px;
  }

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

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

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

  .page-promo__hero-image,
  .page-promo__cta-image {
    max-height: 300px; /* Adjust height for mobile */
  }

  .page-promo__button {
    width: 100%;
    padding: 12px 20px;
  }

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

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

  .page-promo__promo-image,
  .page-promo__step-image {
    height: 200px;
  }

  .page-promo__promo-title {
    font-size: 1.6em;
  }

  .page-promo__tip-title,
  .page-promo__feature-title {
    font-size: 1.4em;
  }

  .page-promo__faq-question {
    font-size: 1.2em;
  }

  /* Ensure all content images within .page-promo are responsive and don't overflow */
  .page-promo img {
    max-width: 100%;
    height: auto;
  }
}