.page-promo {
  color: #333333; /* Dark text for light body background */
  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__section-title {
  font-size: 2.5em;
  color: #FF6B00; /* Primary brand color */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-promo__section-block-title {
  font-size: 2em;
  color: #00A86B; /* Secondary brand color */
  margin-top: 50px;
  margin-bottom: 25px;
  font-weight: bold;
}

.page-promo__hero-section {
  position: relative;
  overflow: hidden;
  background-color: #f0f0f0;
  padding: 0;
  margin-bottom: 60px;
}

.page-promo__hero-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

.page-promo__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  filter: brightness(0.6); /* Darken image slightly for text contrast */
}

.page-promo__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #ffffff;
  max-width: 900px;
  padding: 40px;
  background: rgba(0, 0, 0, 0.4); /* Semi-transparent background for text readability */
  border-radius: 10px;
}

.page-promo__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

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

.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;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.page-promo__button--primary {
  background-color: #FF6B00; /* Primary brand color */
  color: #ffffff;
  border: 2px solid #FF6B00;
}

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

.page-promo__button--secondary {
  background-color: #00A86B; /* Secondary brand color */
  color: #ffffff;
  border: 2px solid #00A86B;
}

.page-promo__button--secondary:hover {
  background-color: #008f5a;
  transform: translateY(-2px);
}

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

.page-promo__text-content {
  margin-bottom: 20px;
  font-size: 1.1em;
  line-height: 1.7;
  text-align: justify;
}

.page-promo__promo-overview {
  margin-bottom: 60px;
  padding: 40px 0;
  background-color: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
}

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

.page-promo__promo-card {
  background-color: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promo__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.page-promo__card-title {
  font-size: 1.8em;
  color: #FF6B00;
  margin-bottom: 15px;
}

.page-promo__card-description {
  font-size: 1em;
  color: #555555;
  margin-bottom: 25px;
  min-height: 60px; /* Ensure consistent height */
}

.page-promo__detailed-promos {
  margin-bottom: 80px;
}

.page-promo__promo-card--large {
  display: flex;
  align-items: center;
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 50px;
  overflow: hidden;
}

.page-promo__promo-card--large.page-promo__promo-card--reverse {
  flex-direction: row-reverse;
}

.page-promo__card-image {
  flex: 1;
  min-width: 400px; /* Minimum size for content images */
  height: auto;
  object-fit: cover;
  display: block;
  border-radius: 15px;
}

.page-promo__card-content {
  flex: 1.5;
  padding: 40px;
}

.page-promo__card-content-title {
  font-size: 2.2em;
  color: #FF6B00;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-promo__section-block {
  background-color: #f9f9f9;
  border-radius: 15px;
  padding: 40px;
  margin-bottom: 50px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
}

.page-promo__faq-section {
  margin-bottom: 80px;
  background-color: #f0f0f0;
  padding: 60px 0;
  border-radius: 10px;
}

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

.page-promo__faq-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 25px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
}

.page-promo__faq-question {
  font-size: 1.3em;
  color: #00A86B;
  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;
  transition: transform 0.3s ease;
}

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

.page-promo__faq-answer {
  font-size: 1.05em;
  color: #666666;
  display: none;
  padding-top: 10px;
  border-top: 1px solid #eee;
  margin-top: 10px;
}

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

.page-promo__cta-section {
  text-align: center;
  padding: 60px 20px;
  background-color: #FF6B00;
  color: #ffffff;
  border-radius: 15px;
  margin-bottom: 80px;
}

.page-promo__cta-title {
  font-size: 2.8em;
  margin-bottom: 25px;
  font-weight: bold;
  line-height: 1.2;
}

.page-promo__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promo__cta-section .page-promo__button {
  background-color: #ffffff;
  color: #FF6B00;
  border: 2px solid #ffffff;
}

.page-promo__cta-section .page-promo__button:hover {
  background-color: #f0f0f0;
  color: #e65c00;
}

/* 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__promo-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .page-promo__promo-card--large {
    flex-direction: column;
  }
  .page-promo__promo-card--large.page-promo__promo-card--reverse {
    flex-direction: column;
  }
  .page-promo__card-image {
    min-width: unset;
    width: 100%;
    border-radius: 15px 15px 0 0;
  }
  .page-promo__promo-card--large.page-promo__promo-card--reverse .page-promo__card-image {
    border-radius: 15px 15px 0 0;
  }
  .page-promo__card-content {
    padding: 30px;
  }
  .page-promo__card-content-title {
    font-size: 1.8em;
  }
  .page-promo__cta-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-promo__hero-content {
    padding: 20px;
  }
  .page-promo__hero-title {
    font-size: 2em;
  }
  .page-promo__hero-description {
    font-size: 1em;
  }
  .page-promo__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-promo__button {
    width: 100%;
    padding: 12px 20px;
  }
  .page-promo__section-title {
    font-size: 1.8em;
  }
  .page-promo__promo-grid {
    grid-template-columns: 1fr;
  }
  .page-promo__promo-card {
    padding: 20px;
  }
  .page-promo__card-title {
    font-size: 1.5em;
  }
  .page-promo__card-description {
    min-height: unset;
  }
  .page-promo__promo-card--large {
    margin-bottom: 30px;
  }
  .page-promo__card-content {
    padding: 20px;
  }
  .page-promo__card-content-title {
    font-size: 1.6em;
  }
  .page-promo__text-content {
    font-size: 1em;
  }
  .page-promo__faq-question {
    font-size: 1.1em;
  }
  .page-promo__cta-title {
    font-size: 1.8em;
  }
  .page-promo__cta-description {
    font-size: 1em;
  }
  .page-promo__hero-image,
  .page-promo__promo-card--large .page-promo__card-image {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-promo__hero-title {
    font-size: 1.8em;
  }
  .page-promo__hero-description {
    font-size: 0.95em;
  }
  .page-promo__section-title {
    font-size: 1.6em;
  }
  .page-promo__card-content-title {
    font-size: 1.4em;
  }
  .page-promo__cta-title {
    font-size: 1.6em;
  }
  .page-promo__promo-card--large .page-promo__card-image {
    min-height: 200px; /* Ensure mobile images are not too small */
  }
}