.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.8em;
  color: #000000;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

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

.page-promo__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 1em;
}

.page-promo__button--register {
  background-color: #000000;
  color: #FFFFFF;
}

.page-promo__button--register:hover {
  background-color: #333333;
}

.page-promo__button--login {
  background-color: #FCBC45;
  color: #000000;
}

.page-promo__button--login:hover {
  background-color: #e0a53b;
}

.page-promo__button--details {
  background-color: #000000;
  color: #FFFFFF;
  font-size: 0.9em;
  padding: 8px 15px;
}

.page-promo__button--details:hover {
  background-color: #333333;
}

/* Hero Section */
.page-promo__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  color: #FFFFFF;
  padding-bottom: 50px;
}

.page-promo__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.page-promo__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 600px; /* Fixed height for hero to ensure image is visible */
}

.page-promo__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.6); /* Semi-transparent overlay for text readability */
  border-radius: 10px;
  max-width: 800px;
}

.page-promo__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FCBC45;
}

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

.page-promo__hero-actions .page-promo__button {
  margin: 0 10px;
}

/* Promotions Grid */
.page-promo__promotions-grid {
  padding: 80px 0;
  background-color: #FFFFFF;
}

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

.page-promo__promo-card {
  background-color: #f9f9f9;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  min-height: 450px; /* Ensure cards have enough height */
}

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

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

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

.page-promo__card-title {
  font-size: 1.8em;
  color: #000000;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-promo__card-title a {
  color: #000000;
  text-decoration: none;
}

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

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

/* Why Choose Section */
.page-promo__why-choose {
  padding: 80px 0;
  background-color: #f0f0f0;
}

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

.page-promo__feature-item {
  text-align: center;
  padding: 30px;
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-promo__feature-icon {
  width: 200px;
  height: 150px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-promo__feature-title {
  font-size: 1.5em;
  color: #000000;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-promo__feature-description {
  font-size: 0.95em;
  color: #555555;
}

/* CTA Section */
.page-promo__cta-section {
  padding: 80px 0;
  background-color: #000000;
  color: #FFFFFF;
  text-align: center;
}

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

.page-promo__cta-section .page-promo__section-description {
  color: #f0f0f0;
  margin-bottom: 40px;
}

.page-promo__cta-actions .page-promo__button {
  margin: 0 15px;
}

/* FAQ Section */
.page-promo__faq-section {
  padding: 80px 0;
  background-color: #FFFFFF;
}

.page-promo__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-promo__faq-item {
  margin-bottom: 20px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 20px;
  background-color: #f9f9f9;
}

.page-promo__faq-question {
  font-size: 1.3em;
  color: #000000;
  margin-bottom: 10px;
  cursor: pointer;
  font-weight: bold;
}

.page-promo__faq-answer {
  font-size: 1em;
  color: #555555;
  display: block; /* Initially visible for content length */
}

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

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

@media (max-width: 768px) {
  .page-promo__hero-container {
    height: 500px;
  }

  .page-promo__hero-content {
    max-width: 90%;
  }

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

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

  .page-promo__hero-actions .page-promo__button {
    margin: 10px 0;
    display: block;
    width: 100%;
  }

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

  .page-promo__grid-wrapper {
    grid-template-columns: 1fr;
  }

  .page-promo__feature-item {
    padding: 20px;
  }

  .page-promo__feature-icon {
    width: 200px;
    height: 150px;
  }

  .page-promo__cta-actions .page-promo__button {
    margin: 10px 0;
    display: block;
    width: 100%;
  }

  /* Ensure images in content area are responsive and not smaller than 200px */
  .page-promo__promotions-grid img,
  .page-promo__why-choose img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Enforce minimum size */
    min-height: 200px; /* Enforce minimum size */
  }

  .page-promo__promo-card {
    min-height: unset;
  }
}

@media (max-width: 480px) {
  .page-promo__hero-container {
    height: 400px;
  }

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

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

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

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

  .page-promo__feature-title {
    font-size: 1.3em;
  }
}