.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__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  color: #ffffff;
  text-align: center;
}

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

.page-promo__hero-container {
  position: relative;
}

.page-promo__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  max-width: 90%;
  background: rgba(0, 0, 0, 0.6); /* Semi-transparent black overlay for text readability */
  padding: 30px;
  border-radius: 10px;
}

.page-promo__main-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: #FCBC45; /* Login button color for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-promo__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #FFFFFF;
}

.page-promo__cta-button {
  display: inline-block;
  background-color: #FCBC45; /* Login button color */
  color: #000000; /* Dark text for contrast */
  padding: 15px 30px;
  font-size: 1.2em;
  font-weight: bold;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

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

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

.page-promo__section {
  padding: 60px 0;
  background-color: #FFFFFF;
}

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

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

.page-promo__section-title {
  font-size: 2.5em;
  color: #000000;
  text-align: center;
  margin-bottom: 40px;
}

.page-promo__text-content {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #333333;
}

.page-promo__inline-cta-button {
  display: inline-block;
  background-color: #000000; /* Main color */
  color: #FFFFFF; /* White text */
  padding: 10px 20px;
  font-size: 1em;
  font-weight: bold;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  margin-top: 20px;
}

.page-promo__inline-cta-button:hover {
  background-color: #333333;
}

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

.page-promo__promotion-card {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.page-promo__promotion-card:hover {
  transform: translateY(-5px);
}

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

.page-promo__card-title {
  font-size: 1.5em;
  color: #000000;
  padding: 15px;
  margin-bottom: 0;
}

.page-promo__card-description {
  font-size: 0.95em;
  color: #555555;
  padding: 0 15px 15px;
}

.page-promo__card-button {
  display: block;
  background-color: #FCBC45;
  color: #000000;
  padding: 10px 15px;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  border-top: 1px solid #e0e0e0;
}

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

.page-promo__numbered-list, .page-promo__unordered-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-promo__numbered-list li, .page-promo__unordered-list li {
  background-color: #f0f0f0;
  margin-bottom: 15px;
  padding: 20px;
  border-left: 5px solid #FCBC45; /* Highlight with accent color */
  border-radius: 5px;
}

.page-promo__list-item-title {
  font-size: 1.3em;
  color: #000000;
  margin-bottom: 10px;
}

.page-promo__list-item-title p {
  font-size: 1em;
  color: #333333;
}

.page-promo__faq-item {
  background-color: #f0f0f0;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 5px;
}

.page-promo__faq-question {
  font-size: 1.2em;
  color: #000000;
  margin-bottom: 10px;
}

.page-promo__faq-answer {
  font-size: 1em;
  color: #555555;
}

.page-promo__feature-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-promo__feature-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  padding: 15px;
  background-color: #f0f0f0;
  border-radius: 8px;
  border-left: 4px solid #FCBC45;
}

.page-promo__feature-list li::before {
  content: '✔️';
  font-size: 1.5em;
  margin-right: 15px;
  color: #FCBC45;
  line-height: 1;
}

.page-promo__feature-list li h3 {
  margin-top: 0;
  margin-bottom: 5px;
  font-size: 1.3em;
  color: #000000;
}

.page-promo__feature-list li p {
  margin: 0;
  color: #555555;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-promo__main-title {
    font-size: 2.5em;
  }
  .page-promo__hero-description {
    font-size: 1.1em;
  }
  .page-promo__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-promo__hero-content {
    padding: 20px;
  }
  .page-promo__main-title {
    font-size: 2em;
  }
  .page-promo__hero-description {
    font-size: 1em;
  }
  .page-promo__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-promo__section-title {
    font-size: 1.8em;
  }
  .page-promo__text-content {
    font-size: 1em;
  }
  .page-promo__promotion-grid {
    grid-template-columns: 1fr;
  }
  .page-promo__card-title {
    font-size: 1.3em;
  }
  .page-promo__list-item-title {
    font-size: 1.2em;
  }
  /* Content area images must not cause horizontal scroll */
  .page-promo img {
    max-width: 100%;
    height: auto;
  }
  .page-promo__hero-image {
    height: 400px; /* Adjust hero image height for mobile */
  }
  .page-promo__card-image {
    height: 180px;
  }
}

@media (max-width: 480px) {
  .page-promo__main-title {
    font-size: 1.5em;
  }
  .page-promo__hero-description {
    font-size: 0.9em;
  }
  .page-promo__cta-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-promo__section-title {
    font-size: 1.5em;
  }
  .page-promo__hero-image {
    height: 300px;
  }
  .page-promo__card-image {
    height: 150px;
  }
}