.page-promo {
  color: #333333; /* Default text color for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

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

.page-promo__hero-section {
  position: relative;
  overflow: hidden;
  background-color: #007BFF; /* Primary brand color for hero background */
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
}

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

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

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

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

.page-promo__cta-button {
  display: inline-block;
  background-color: #FFC107; /* Secondary brand color for CTA */
  color: #007BFF; /* Primary brand color for text on CTA */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

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

.page-promo__section-title {
  font-size: 2.8em;
  color: #007BFF; /* Primary brand color for section titles */
  text-align: center;
  margin-bottom: 25px;
  margin-top: 60px;
  font-weight: bold;
}

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

.page-promo__why-choose-section,
.page-promo__types-section,
.page-promo__how-to-claim-section,
.page-promo__terms-conditions-section,
.page-promo__final-cta-section,
.page-promo__featured-bonus-section {
  padding: 60px 0;
  background-color: #f9f9f9;
  margin-bottom: 20px;
}

.page-promo__why-choose-section {
  background-color: #ffffff;
}

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

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

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

.page-promo__feature-title {
  font-size: 1.5em;
  color: #007BFF; /* Primary brand color */
  margin-bottom: 15px;
}

.page-promo__feature-description {
  color: #666666;
}

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

.page-promo__promo-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

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

.page-promo__card-title {
  font-size: 1.6em;
  color: #007BFF; /* Primary brand color */
  padding: 20px 20px 10px;
}

.page-promo__card-description {
  color: #666666;
  padding: 0 20px 20px;
  flex-grow: 1;
}

.page-promo__card-button {
  display: block;
  background-color: #FFC107; /* Secondary brand color */
  color: #007BFF; /* Primary brand color */
  padding: 12px 20px;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  margin-top: auto; /* Push button to bottom */
}

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

.page-promo__featured-bonus-section {
  background-color: #007BFF;
  color: #ffffff;
}

.page-promo__featured-bonus-section .page-promo__section-title,
.page-promo__featured-bonus-section .page-promo__section-intro {
  color: #FFC107;
}

.page-promo__bonus-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.page-promo__bonus-image {
  flex: 1 1 45%;
  min-width: 300px;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  display: block; /* Ensure image behaves as block */
  width: 100%; /* Make image responsive within its flex container */
  height: auto;
}

.page-promo__bonus-details {
  flex: 1 1 45%;
  min-width: 300px;
}

.page-promo__bonus-subtitle {
  font-size: 2em;
  color: #FFC107; /* Secondary brand color */
  margin-bottom: 20px;
}

.page-promo__bonus-description {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #f0f0f0;
}

.page-promo__how-to-claim-section {
  background-color: #f0f8ff;
}

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

.page-promo__step-item {
  background-color: #ffffff;
  border-left: 5px solid #007BFF; /* Primary brand color accent */
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.page-promo__step-title {
  font-size: 1.8em;
  color: #007BFF; /* Primary brand color */
  margin-bottom: 10px;
}

.page-promo__step-description {
  color: #666666;
}

.page-promo__cta-button--center {
  margin: 50px auto 0 auto;
  display: table;
}

.page-promo__terms-conditions-section {
  background-color: #ffffff;
  text-align: center;
}

.page-promo__text-link {
  color: #007BFF; /* Primary brand color */
  text-decoration: underline;
  font-weight: bold;
  font-size: 1.1em;
  transition: color 0.3s ease;
}

.page-promo__text-link:hover {
  color: #0056b3;
}

.page-promo__final-cta-section {
  background-color: #FFC107;
  color: #007BFF;
  text-align: center;
}

.page-promo__final-cta-section .page-promo__section-title,
.page-promo__final-cta-section .page-promo__section-intro {
  color: #007BFF;
}

.page-promo__final-cta-section .page-promo__cta-button {
  background-color: #007BFF;
  color: #FFC107;
}

.page-promo__final-cta-section .page-promo__cta-button:hover {
  background-color: #0056b3;
  color: #FFC107;
}

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

@media (max-width: 768px) {
  .page-promo__hero-section {
    padding: 60px 0;
  }
  .page-promo__hero-title {
    font-size: 2.5em;
  }
  .page-promo__hero-description {
    font-size: 1em;
  }
  .page-promo__section-title {
    font-size: 2em;
    margin-top: 40px;
    margin-bottom: 20px;
  }
  .page-promo__section-intro {
    margin-bottom: 30px;
  }
  .page-promo__features-grid,
  .page-promo__promo-grid,
  .page-promo__steps-list {
    grid-template-columns: 1fr;
  }
  .page-promo__bonus-content {
    flex-direction: column;
    gap: 20px;
  }
  .page-promo__bonus-image {
    min-width: 200px;
    width: 100%;
    max-width: 100%;
    height: auto;
  }
  .page-promo__bonus-subtitle {
    font-size: 1.6em;
  }
  /* Ensure all images within .page-promo are responsive and not too small */
  .page-promo img {
    max-width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 200px;
  }
  .page-promo__card-image {
    height: 200px;
    min-height: 200px;
  }
}

@media (max-width: 480px) {
  .page-promo__hero-title {
    font-size: 2em;
  }
  .page-promo__cta-button {
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-promo__section-title {
    font-size: 1.8em;
  }
  .page-promo__feature-title {
    font-size: 1.3em;
  }
  .page-promo__card-title {
    font-size: 1.4em;
  }
  .page-promo__step-title {
    font-size: 1.5em;
  }
}