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

.page-promo__hero-section {
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  background-color: #0A246A; /* Primary brand color */
  color: #ffffff;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

.page-promo__hero-container {
  position: relative;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  z-index: 1;
}

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

.page-promo__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.page-promo__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #F3C500; /* Secondary brand color for emphasis */
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promo__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  line-height: 1.6;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promo__hero-button {
  display: inline-block;
  background-color: #F3C500; /* Secondary brand color */
  color: #0A246A; /* Primary brand color for text */
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin: 10px;
  border: 2px solid #F3C500;
}

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

.page-promo__hero-button--secondary {
  background-color: transparent;
  color: #F3C500;
  border: 2px solid #F3C500;
}

.page-promo__hero-button--secondary:hover {
  background-color: #F3C500;
  color: #0A246A;
}

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

.page-promo__section-title {
  font-size: 2.8em;
  color: #0A246A; /* Primary brand color */
  text-align: center;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
}

.page-promo__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #F3C500;
  border-radius: 2px;
}

.page-promo__section-intro {
  font-size: 1.1em;
  line-height: 1.7;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
  color: #555555;
}

.page-promo__featured-promos {
  padding: 80px 0;
  background-color: #f9f9f9;
}

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

.page-promo__promo-card {
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  padding-bottom: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promo__promo-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.page-promo__promo-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  margin-bottom: 20px;
}

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

.page-promo__card-description {
  font-size: 1em;
  line-height: 1.6;
  color: #666666;
  margin-bottom: 25px;
  padding: 0 20px;
}

.page-promo__card-button {
  display: inline-block;
  background-color: #F3C500;
  color: #0A246A;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

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

.page-promo__how-to-claim {
  padding: 80px 0;
}

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

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

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

.page-promo__step-icon {
  background-color: #0A246A; /* Primary brand color */
  color: #F3C500; /* Secondary brand color */
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2em;
  font-weight: bold;
  margin: 0 auto 25px auto;
}

.page-promo__step-title {
  font-size: 1.6em;
  color: #0A246A;
  margin-bottom: 15px;
}

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

.page-promo__call-to-action {
  text-align: center;
  margin-top: 60px;
}

.page-promo__cta-button {
  display: inline-block;
  background-color: #0A246A;
  color: #F3C500;
  padding: 18px 45px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid #0A246A;
}

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

.page-promo__why-choose {
  padding: 80px 0;
  background-color: #f9f9f9;
}

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

.page-promo__feature-item {
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
}

.page-promo__feature-icon {
  width: 200px;
  height: 150px;
  object-fit: contain;
  margin: 0 auto 25px auto;
  display: block;
}

.page-promo__feature-title {
  font-size: 1.6em;
  color: #0A246A;
  margin-bottom: 15px;
}

.page-promo__feature-description {
  font-size: 1em;
  line-height: 1.6;
  color: #666666;
}

.page-promo__faq-section {
  padding: 80px 0;
}

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

.page-promo__faq-item {
  background-color: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-promo__faq-question {
  width: 100%;
  background-color: #0A246A; /* Primary brand color */
  color: #ffffff;
  padding: 20px 30px;
  text-align: left;
  font-size: 1.2em;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-promo__faq-question::after {
  content: '+';
  font-size: 1.5em;
  margin-left: 10px;
  transition: transform 0.3s ease;
}

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

.page-promo__faq-answer {
  padding: 0 30px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-promo__faq-answer p {
  padding: 20px 0;
  line-height: 1.7;
  color: #555555;
}

.page-promo__cta-final-section {
  padding: 80px 0;
  background-color: #0A246A; /* Primary brand color */
  color: #ffffff;
  text-align: center;
}

.page-promo__cta-final-content {
  max-width: 900px;
}

.page-promo__cta-final-section .page-promo__section-title {
  color: #F3C500; /* Secondary brand color */
}

.page-promo__cta-final-section .page-promo__section-title::after {
  background-color: #F3C500;
}

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

.page-promo__cta-button--large {
  padding: 20px 50px;
  font-size: 1.3em;
  background-color: #F3C500;
  color: #0A246A;
  border: 2px solid #F3C500;
}

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

.page-promo__cta-login-text {
  margin-top: 30px;
  font-size: 1.1em;
  color: #f0f0f0;
}

.page-promo__cta-login-link {
  color: #F3C500;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-promo__cta-login-link:hover {
  color: #ffffff;
  text-decoration: underline;
}

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

  .page-promo__promo-image {
    height: 220px;
  }
}

@media (max-width: 768px) {
  .page-promo__hero-section {
    min-height: 400px;
    padding: 30px 15px;
  }

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

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

  .page-promo__hero-button {
    padding: 12px 25px;
    font-size: 1em;
  }

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

  .page-promo__section-intro {
    font-size: 1em;
    margin-bottom: 30px;
  }

  .page-promo__promo-grid, .page-promo__steps-grid, .page-promo__feature-grid {
    grid-template-columns: 1fr;
  }

  .page-promo__promo-card, .page-promo__step-card, .page-promo__feature-item {
    margin-bottom: 20px;
  }

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

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

  .page-promo__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }

  .page-promo__faq-answer p {
    padding: 15px 0;
  }

  .page-promo__cta-button--large {
    padding: 15px 35px;
    font-size: 1.1em;
  }

  .page-promo__container {
    padding: 0 15px;
  }

  /* Ensure images in content areas are responsive and don't overflow */
  .page-promo 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__hero-button {
    font-size: 0.9em;
    padding: 10px 20px;
    margin: 5px;
  }

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

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

  .page-promo__step-icon {
    width: 50px;
    height: 50px;
    font-size: 1.8em;
  }
}