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

.page-promo__hero-section {
  position: relative;
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  background-color: #000000; /* Dark background for hero section */
  overflow: hidden;
}

.page-promo__hero-container {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  padding: 40px 20px;
  text-align: center;
}

.page-promo__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  z-index: 0;
}

.page-promo__hero-content {
  position: relative;
  z-index: 1;
  color: #FFFFFF; /* Light text for dark hero background */
  max-width: 800px;
}

.page-promo__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
  color: #FCBC45; /* Login color for emphasis */
}

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

.page-promo__hero-button {
  display: inline-block;
  background-color: #FCBC45; /* Login color */
  color: #000000; /* Dark text for bright button */
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

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

.page-promo__promotions-grid {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
  text-align: center;
}

.page-promo__section-title {
  font-size: 2.8em;
  color: #000000; /* Main color for titles */
  margin-bottom: 20px;
  font-weight: 700;
}

.page-promo__section-description {
  font-size: 1.1em;
  color: #555555;
  margin-bottom: 40px;
  line-height: 1.6;
}

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

.page-promo__promotion-card {
  background-color: #FFFFFF;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: left;
  transition: transform 0.3s ease;
  border: 1px solid #e0e0e0;
}

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

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

.page-promo__card-title {
  font-size: 1.6em;
  color: #000000;
  margin: 20px 20px 10px;
  font-weight: 600;
}

.page-promo__card-text {
  font-size: 1em;
  color: #666666;
  margin: 0 20px 20px;
  line-height: 1.5;
}

.page-promo__card-button {
  display: inline-block;
  background-color: #000000; /* Main color */
  color: #FFFFFF; /* Light text for dark button */
  padding: 10px 25px;
  margin: 0 20px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 1em;
  font-weight: 500;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
}

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

.page-promo__how-it-works-section {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 20px;
  text-align: center;
  background-color: #f8f8f8;
  border-radius: 15px;
  padding-top: 60px;
  padding-bottom: 60px;
}

.page-promo__steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 50px;
}

.page-promo__step-card {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

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

.page-promo__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: #FCBC45; /* Login color */
  color: #000000;
  border-radius: 50%;
  font-size: 2em;
  font-weight: 700;
  margin-bottom: 20px;
}

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

.page-promo__step-text {
  font-size: 1em;
  color: #666666;
  line-height: 1.5;
}

.page-promo__cta-button {
  display: inline-block;
  background-color: #FCBC45; /* Login color */
  color: #000000;
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.3em;
  font-weight: 700;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

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

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

.page-promo__faq-item {
  background-color: #FFFFFF;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  margin-bottom: 20px;
  padding: 25px 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.page-promo__faq-question {
  font-size: 1.5em;
  color: #000000;
  margin-bottom: 15px;
  font-weight: 600;
}

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

.page-promo__cta-final-section {
  background-color: #000000; /* Main color */
  padding: 80px 20px;
  text-align: center;
  margin-top: 80px;
}

.page-promo__cta-container {
  max-width: 900px;
  margin: 0 auto;
  color: #FFFFFF; /* Light text for dark background */
}

.page-promo__cta-title {
  font-size: 3em;
  margin-bottom: 20px;
  font-weight: 700;
  color: #FCBC45; /* Login color for emphasis */
}

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

.page-promo__cta-button--large {
  padding: 18px 50px;
  font-size: 1.5em;
  margin-right: 20px;
}

.page-promo__cta-button--secondary {
  background-color: transparent;
  border: 2px solid #FFFFFF;
  color: #FFFFFF;
  padding: 15px 40px;
  font-size: 1.3em;
}

.page-promo__cta-button--secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

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

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

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

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

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

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

@media (max-width: 768px) {
  .page-promo__hero-section {
    padding-left: 15px;
    padding-right: 15px;
  }

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

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

  .page-promo__hero-button {
    padding: 12px 30px;
    font-size: 1.1em;
  }

  .page-promo__promotions-grid,
  .page-promo__how-it-works-section,
  .page-promo__faq-section,
  .page-promo__cta-final-section {
    margin: 40px auto;
    padding: 0 15px;
  }

  .page-promo__grid-container,
  .page-promo__steps-container {
    grid-template-columns: 1fr;
  }

  .page-promo__card-image {
    height: 200px;
  }

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

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

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

  .page-promo__cta-button--large,
  .page-promo__cta-button--secondary {
    display: block;
    width: 100%;
    margin: 10px 0;
    font-size: 1.2em;
    padding: 15px 20px;
  }

  .page-promo__cta-button--large {
    margin-right: 0;
  }

  .page-promo__hero-image,
  .page-promo__card-image,
  .page-promo__promotion-card img,
  .page-promo__how-it-works-section img,
  .page-promo__faq-section img,
  .page-promo__cta-final-section img,
  .page-promo__grid-container img,
  .page-promo__steps-container img,
  .page-promo__faq-item img,
  .page-promo__cta-container img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-promo__hero-title {
    font-size: 2em;
  }

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

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

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

  .page-promo__step-title {
    font-size: 1.4em;
  }

  .page-promo__faq-question {
    font-size: 1.3em;
  }

  .page-promo__cta-title {
    font-size: 1.8em;
  }
}