.page-promo {
  color: #ffffff; /* Light text for dark body background */
  padding-bottom: 60px;
  line-height: 1.6;
  background-color: transparent; /* Body background is handled by shared.css */
}

.page-promo__hero-section {
  position: relative;
  width: 100%;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Fixed header offset for desktop */
}

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

.page-promo__hero-container {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4); /* Semi-transparent overlay for text */
  border-radius: 10px;
}

.page-promo__hero-title {
  font-size: 3.5rem;
  color: #FFD700; /* Auxiliary color for emphasis */
  margin-bottom: 20px;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-promo__hero-description {
  font-size: 1.3rem;
  color: #f0f0f0;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-promo__hero-button {
  display: inline-block;
  background-color: #FFD700; /* Auxiliary color for CTA */
  color: #1A202C; /* Main color for button text */
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 700;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-promo__hero-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

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

.page-promo__section-title {
  font-size: 2.5rem;
  color: #FFD700;
  text-align: center;
  margin-bottom: 30px;
  padding-top: 40px;
}

.page-promo__section-intro {
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-promo__section-intro a {
  color: #FFD700;
  text-decoration: underline;
}

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

.page-promo__card {
  background-color: rgba(255, 255, 255, 0.08); /* Semi-transparent light background */
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.page-promo__card:hover {
  transform: translateY(-8px);
}

.page-promo__card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.page-promo__card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-promo__card-title {
  font-size: 1.6rem;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-promo__card-title a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-promo__card-title a:hover {
  color: #ffffff;
}

.page-promo__card-description {
  font-size: 1rem;
  color: #f0f0f0;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promo__card-button {
  display: inline-block;
  background-color: #1A202C; /* Main color for button background */
  color: #FFD700; /* Auxiliary color for button text */
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background-color 0.3s ease, color 0.3s ease;
  align-self: flex-start;
}

.page-promo__card-button:hover {
  background-color: #FFD700;
  color: #1A202C;
}

.page-promo__sub-section-title {
  font-size: 2rem;
  color: #FFD700;
  margin-top: 50px;
  margin-bottom: 25px;
  text-align: left;
}

.page-promo__text-block {
  font-size: 1.05rem;
  margin-bottom: 20px;
  color: #e0e0e0;
}

.page-promo__text-block a {
  color: #FFD700;
  text-decoration: underline;
}

.page-promo__list {
  list-style-type: disc;
  margin-left: 30px;
  margin-bottom: 30px;
}

.page-promo__numbered-list {
  list-style-type: decimal;
  margin-left: 30px;
  margin-bottom: 30px;
}

.page-promo__list-item {
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: #e0e0e0;
}

.page-promo__list-item strong {
  color: #FFD700;
}

.page-promo__list-item a {
  color: #FFD700;
  text-decoration: underline;
}

.page-promo__faq-section {
  margin-top: 40px;
  margin-bottom: 60px;
}

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

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

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

.page-promo__faq-answer {
  font-size: 1rem;
  color: #e0e0e0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out;
}

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

.page-promo__faq-answer a {
  color: #FFD700;
  text-decoration: underline;
}

.page-promo__cta-section {
  text-align: center;
  margin-top: 80px;
  padding: 50px 20px;
  background: linear-gradient(90deg, #1A202C 0%, rgba(26, 32, 44, 0.7) 100%);
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.page-promo__cta-text {
  font-size: 1.8rem;
  color: #ffffff;
  margin-bottom: 30px;
  font-weight: 600;
}

.page-promo__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #1A202C;
  padding: 18px 45px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 700;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promo__hero-title {
    font-size: 2.8rem;
  }
  .page-promo__hero-description {
    font-size: 1.1rem;
  }
  .page-promo__section-title {
    font-size: 2.2rem;
  }
  .page-promo__sub-section-title {
    font-size: 1.8rem;
  }
  .page-promo__card-title {
    font-size: 1.4rem;
  }
  .page-promo__cta-text {
    font-size: 1.5rem;
  }
  .page-promo__cta-button {
    font-size: 1.2rem;
    padding: 15px 35px;
  }
}

@media (max-width: 768px) {
  .page-promo__hero-section {
    min-height: 400px;
    padding-top: var(--header-offset, 80px); /* Adjust padding for mobile header */
  }
  .page-promo__hero-title {
    font-size: 2.2rem;
  }
  .page-promo__hero-description {
    font-size: 1rem;
  }
  .page-promo__hero-button {
    font-size: 1rem;
    padding: 12px 25px;
  }
  .page-promo__content-wrapper {
    padding: 30px 15px;
  }
  .page-promo__section-title {
    font-size: 2rem;
    padding-top: 20px;
  }
  .page-promo__sub-section-title {
    font-size: 1.6rem;
    margin-top: 30px;
  }
  .page-promo__detail-cards {
    grid-template-columns: 1fr;
  }
  .page-promo__card-image {
    height: 200px;
  }
  .page-promo__card-title {
    font-size: 1.3rem;
  }
  .page-promo__text-block, .page-promo__list-item, .page-promo__faq-answer {
    font-size: 0.95rem;
  }
  .page-promo__faq-question {
    font-size: 1.2rem;
  }
  .page-promo__cta-text {
    font-size: 1.3rem;
  }
  .page-promo__cta-button {
    font-size: 1.1rem;
    padding: 12px 30px;
  }
  /* Ensure content area images are responsive and don't overflow */
  .page-promo img {
    max-width: 100%;
    height: auto;
  }
  .page-promo {
    overflow-x: hidden;
  }
}

@media (max-width: 480px) {
  .page-promo__hero-title {
    font-size: 1.8rem;
  }
  .page-promo__hero-description {
    font-size: 0.9rem;
  }
  .page-promo__hero-container {
    padding: 15px;
  }
  .page-promo__hero-button {
    font-size: 0.9rem;
    padding: 10px 20px;
  }
  .page-promo__section-title {
    font-size: 1.8rem;
  }
  .page-promo__sub-section-title {
    font-size: 1.4rem;
  }
  .page-promo__cta-text {
    font-size: 1.1rem;
  }
  .page-promo__cta-button {
    font-size: 1rem;
    padding: 10px 25px;
  }
}