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

.page-promo__hero-section {
  background-color: #000000; /* Dark background for hero */
  padding-top: var(--header-offset, 120px); /* Fixed header offset for desktop */
  padding-bottom: 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-promo__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4; /* Slightly transparent to let text stand out */
  z-index: 0;
}

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

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

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

.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.3s ease;
  cursor: pointer;
  border: none;
}

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

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

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

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

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

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

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

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

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

.page-promo__card {
  background-color: #f9f9f9;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.page-promo__card-image {
  width: 100%;
  height: auto;
  max-width: 400px; /* Ensure images are not too small */
  min-width: 200px; /* Min image width */
  min-height: 200px; /* Min image height */
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

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

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

.page-promo__button--small {
  padding: 10px 20px;
  font-size: 0.9em;
  background-color: #FCBC45;
  color: #000000;
}

.page-promo__button--small:hover {
  background-color: #e0a538;
}

.page-promo__disclaimer {
  font-size: 0.9em;
  color: #777777;
  text-align: center;
  margin-top: 40px;
  padding: 0 15px;
}

.page-promo__content-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-promo__content-block--center {
  align-items: center;
  text-align: center;
}

.page-promo__sub-title {
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 15px;
  color: #000000;
}

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

.page-promo__text-bottom {
  font-size: 1em;
  line-height: 1.6;
  margin-top: 30px;
  text-align: center;
  color: #555555;
}

.page-promo__image-right,
.page-promo__image-center {
  width: 100%;
  height: auto;
  max-width: 600px; /* Adjust max-width as needed */
  min-width: 200px; /* Min image width */
  min-height: 200px; /* Min image height */
  border-radius: 12px;
  object-fit: cover;
  margin: 30px auto;
}

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

.page-promo__list-item {
  background-color: #f0f0f0;
  padding: 20px;
  border-radius: 10px;
  font-size: 1.1em;
  line-height: 1.5;
  color: #333333;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.page-promo__cta-final {
  background-color: #000000; /* Dark background for CTA */
  color: #FFFFFF;
  text-align: center;
  padding: 80px 20px;
}

.page-promo__container--cta {
  max-width: 900px;
}

.page-promo__cta-title {
  font-size: 2.8em;
  font-weight: bold;
  margin-bottom: 20px;
  color: #FFFFFF;
}

.page-promo__cta-description {
  font-size: 1.2em;
  line-height: 1.6;
  margin-bottom: 40px;
  color: #f0f0f0;
}

.page-promo__cta-actions {
  display: flex;
  justify-content: center;
  gap: 25px;
}

.page-promo__button--primary {
  background-color: #FCBC45;
  color: #000000;
  padding: 18px 35px;
  font-size: 1.2em;
}

.page-promo__button--primary:hover {
  background-color: #e0a538;
}

.page-promo__button--secondary {
  background-color: #FFFFFF;
  color: #000000;
  padding: 18px 35px;
  font-size: 1.2em;
}

.page-promo__button--secondary:hover {
  background-color: #f0f0f0;
}

.page-promo__terms-responsible {
  padding-top: 60px;
  padding-bottom: 80px;
  background-color: #f5f5f5;
}

.page-promo__info-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  text-align: center;
}

.page-promo__info-item {
  margin-bottom: 10px;
}

.page-promo__info-item a {
  color: #000000;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: color 0.3s ease;
}

.page-promo__info-item a:hover {
  color: #FCBC45;
}

.page-promo__disclaimer-final {
  font-size: 0.9em;
  color: #777777;
  text-align: center;
  margin-top: 30px;
  line-height: 1.6;
}

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

@media (max-width: 768px) {
  .page-promo__hero-section {
    padding-top: var(--header-offset, 120px); /* Ensure mobile header offset */
    padding-bottom: 40px;
  }
  .page-promo__hero-title {
    font-size: 2.2em;
  }
  .page-promo__hero-description {
    font-size: 1em;
  }
  .page-promo__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-promo__button {
    width: 80%;
    max-width: 300px;
    margin: 0 auto;
  }
  .page-promo__section {
    padding: 40px 15px;
  }
  .page-promo__section-title {
    font-size: 1.8em;
  }
  .page-promo__section-intro {
    font-size: 0.95em;
  }
  .page-promo__grid {
    grid-template-columns: 1fr;
  }
  .page-promo__card-title {
    font-size: 1.5em;
  }
  .page-promo__sub-title {
    font-size: 1.5em;
  }
  .page-promo__text {
    font-size: 0.95em;
  }
  .page-promo__cta-title {
    font-size: 2em;
  }
  .page-promo__cta-description {
    font-size: 1em;
  }
  .page-promo__cta-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-promo__button--primary, .page-promo__button--secondary {
    width: 80%;
    max-width: 300px;
    margin: 0 auto;
    font-size: 1.1em;
  }

  /* Mobile image overflow prevention */
  .page-promo img {
    max-width: 100%;
    height: auto;
  }
  .page-promo__card-image,
  .page-promo__image-right,
  .page-promo__image-center {
    max-width: 100%;
    min-width: 200px;
    min-height: 200px;
    height: auto; /* Ensure aspect ratio is maintained */
  }
  .page-promo {
    overflow-x: hidden;
  }
}

@media (max-width: 480px) {
  .page-promo__hero-title {
    font-size: 1.8em;
  }
  .page-promo__hero-description {
    font-size: 0.9em;
  }
  .page-promo__section-title {
    font-size: 1.6em;
  }
  .page-promo__card-title {
    font-size: 1.3em;
  }
  .page-promo__sub-title {
    font-size: 1.3em;
  }
  .page-promo__cta-title {
    font-size: 1.8em;
  }
}