.page-promo {
  color: #333333; /* Default text color for light body background */
}

.page-promo__hero-section {
  position: relative;
  padding-top: var(--header-offset, 120px); /* Ensures content is below fixed header */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  min-height: 500px;
  background-color: #0A2463; /* Primary dark blue background */
  color: #ffffff;
  padding-bottom: 40px; /* Add some padding at the bottom for content below image */
}

.page-promo__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.3; /* Slightly transparent to let background color show */
}

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

.page-promo__main-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for main title */
  line-height: 1.2;
}

.page-promo__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  line-height: 1.6;
}

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

.page-promo__cta-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;
  white-space: nowrap;
}

.page-promo__cta-button--primary {
  background-color: #FFD700; /* Gold */
  color: #0A2463; /* Deep blue */
  border: 2px solid #FFD700;
}

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

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

.page-promo__cta-button--secondary:hover {
  background-color: #FFD700;
  color: #0A2463;
  transform: translateY(-2px);
}

.page-promo__section {
  padding: 60px 20px;
  background-color: #f8f8f8;
}

.page-promo__section:nth-of-type(even) {
  background-color: #ffffff;
}

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

.page-promo__section-title {
  font-size: 2.5em;
  color: #0A2463; /* Deep blue */
  text-align: center;
  margin-bottom: 20px;
}

.page-promo__section-intro {
  font-size: 1.1em;
  line-height: 1.7;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #555555;
}

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

.page-promo__promo-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.page-promo__card-title {
  font-size: 1.4em;
  color: #0A2463;
  margin: 20px 15px 10px 15px;
  flex-grow: 1;
}

.page-promo__card-description {
  font-size: 0.95em;
  color: #666666;
  line-height: 1.6;
  padding: 0 15px 20px 15px;
  flex-grow: 1;
}

.page-promo__card-button {
  display: inline-block;
  background-color: #FFD700;
  color: #0A2463;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  margin-bottom: 20px;
  transition: background-color 0.3s ease;
}

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

.page-promo__promo-row {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.page-promo__promo-item {
  display: flex;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.07);
  overflow: hidden;
  align-items: center;
}

.page-promo__promo-item:nth-child(even) {
  flex-direction: row-reverse;
}

.page-promo__item-image {
  width: 50%;
  height: auto;
  object-fit: cover;
  min-width: 200px; /* Ensure images are not too small */
}

.page-promo__item-content {
  width: 50%;
  padding: 30px;
}

.page-promo__item-title {
  font-size: 1.8em;
  color: #0A2463;
  margin-bottom: 15px;
}

.page-promo__item-description {
  font-size: 1em;
  color: #555555;
  line-height: 1.6;
  margin-bottom: 20px;
}

.page-promo__item-button {
  display: inline-block;
  background-color: #0A2463;
  color: #ffffff;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-promo__item-button:hover {
  background-color: #1a3c7c;
}

.page-promo__why-list {
  list-style: none;
  padding: 0;
  margin: 40px 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.page-promo__why-item {
  background-color: #ffffff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  font-size: 1.05em;
  line-height: 1.7;
  color: #444444;
  border-left: 5px solid #FFD700;
}

.page-promo__why-item strong {
  color: #0A2463;
}

.page-promo__section-outro {
  font-size: 1.1em;
  line-height: 1.7;
  text-align: center;
  max-width: 800px;
  margin: 40px auto 0 auto;
  color: #555555;
}

.page-promo__why-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

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

.page-promo__detail-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promo__detail-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

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

.page-promo__detail-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-promo__detail-title a:hover {
  color: #FFD700;
}

.page-promo__detail-description {
  font-size: 0.95em;
  color: #666666;
  line-height: 1.6;
  margin-bottom: 25px;
  flex-grow: 1;
}

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

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

.page-promo__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  font-weight: bold;
  color: #FFD700;
  transition: transform 0.3s ease;
}

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

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

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

.page-promo__section--cta-final {
  background-color: #0A2463; /* Dark blue background */
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
}

.page-promo__cta-final-content .page-promo__section-title,
.page-promo__cta-final-content .page-promo__section-intro {
  color: #ffffff; /* White text for dark background */
}

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

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

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-promo__main-title {
    font-size: 2.8em;
  }

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

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

  .page-promo__promo-item {
    flex-direction: column;
  }

  .page-promo__promo-item:nth-child(even) {
    flex-direction: column;
  }

  .page-promo__item-image,
  .page-promo__item-content {
    width: 100%;
  }

  .page-promo__item-image {
    height: 250px;
  }
}

@media (max-width: 768px) {
  .page-promo__hero-section {
    padding-top: var(--header-offset, 80px);
    min-height: 400px;
  }

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

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

  .page-promo__section {
    padding: 40px 15px;
  }

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

  .page-promo__section-intro {
    font-size: 0.95em;
  }

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

  .page-promo__item-image {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Ensure images are not too small */
  }

  .page-promo__promo-item img,
  .page-promo__promo-card img,
  .page-promo__item-image,
  .page-promo__why-list img,
  .page-promo__detail-card img,
  .page-promo__faq-item img,
  .page-promo__cta-final-content img {
    max-width: 100%;
    height: auto;
  }

  /* Content area images must not display smaller than 200px */
  .page-promo img {
    min-width: 200px; 
    min-height: 200px;
    object-fit: cover; /* Ensures image covers the area without distortion */
  }

  .page-promo__card-image {
    height: 180px;
  }

  .page-promo__cta-button {
    padding: 12px 20px;
    font-size: 1em;
  }

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

  .page-promo__item-content {
    padding: 20px;
  }

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

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