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

.page-promo__hero-section {
  position: relative;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
  padding-bottom: 60px;
  background-color: #f4f4f4;
  text-align: center;
  overflow: hidden;
}

.page-promo__hero-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
  position: relative;
  z-index: 1;
}

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

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

.page-promo__hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-promo__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
  white-space: nowrap;
}

.page-promo__button--primary {
  background-color: #FFD700; /* Main brand color */
  color: #8B0000; /* Dark text for primary button */
  border: 2px solid #FFD700;
}

.page-promo__button--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-promo__button--secondary {
  background-color: transparent;
  color: #8B0000;
  border: 2px solid #8B0000; /* Auxiliary color border */
}

.page-promo__button--secondary:hover {
  background-color: #8B0000;
  color: #FFD700;
  transform: translateY(-3px);
}

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

.page-promo__overview-section {
  padding: 80px 20px;
  background-color: #fcfcfc;
  text-align: center;
}

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

.page-promo__section-title {
  font-size: 2.8em;
  color: #8B0000;
  margin-bottom: 30px;
  text-align: center;
}

.page-promo__section-intro {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-promo__overview-image {
  width: 100%;
  height: auto;
  max-width: 1000px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  margin-top: 40px;
}

.page-promo__promo-list-section {
  padding: 80px 20px;
  background-color: #f4f4f4;
}

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

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

.page-promo__promo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.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.6em;
  color: #8B0000;
  margin-bottom: 15px;
  line-height: 1.3;
}

.page-promo__card-title a {
  color: #8B0000;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

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

.page-promo__button--details {
  background-color: #FFD700;
  color: #8B0000;
  border: none;
  padding: 10px 20px;
  font-size: 0.9em;
  margin-right: 10px;
}

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

.page-promo__button--claim {
  background-color: #8B0000;
  color: #FFD700;
  border: none;
  padding: 10px 20px;
  font-size: 0.9em;
}

.page-promo__button--claim:hover {
  background-color: #a00000;
}

.page-promo__deep-content-section {
  padding: 80px 20px;
  background-color: #fcfcfc;
}

.page-promo__paragraph {
  font-size: 1.05em;
  line-height: 1.8;
  margin-bottom: 25px;
  color: #444444;
}

.page-promo__sub-title {
  font-size: 2em;
  color: #8B0000;
  margin-top: 40px;
  margin-bottom: 25px;
  border-bottom: 2px solid #FFD700;
  padding-bottom: 10px;
}

.page-promo__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 25px;
  color: #444444;
}

.page-promo__list-item {
  font-size: 1.05em;
  line-height: 1.8;
  margin-bottom: 10px;
}

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

.page-promo__list-item a {
  color: #8B0000;
  text-decoration: underline;
}

.page-promo__list-item a:hover {
  color: #FFD700;
}

.page-promo__list.page-promo__list--ordered {
  list-style-type: decimal;
}

.page-promo__cta-section {
  position: relative;
  padding: 80px 20px;
  background-color: #8B0000;
  text-align: center;
  overflow: hidden;
}

.page-promo__cta-container {
  position: relative;
  z-index: 1;
}

.page-promo__cta-title {
  font-size: 3em;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.page-promo__cta-description {
  font-size: 1.2em;
  color: #f0f0f0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promo__button--large {
  padding: 18px 40px;
  font-size: 1.3em;
  background-color: #FFD700;
  color: #8B0000;
  border: 2px solid #FFD700;
}

.page-promo__button--large:hover {
  background-color: #e6c200;
  transform: translateY(-5px);
}

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

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

@media (max-width: 768px) {
  .page-promo__hero-section {
    padding-top: var(--header-offset, 80px);
    padding-bottom: 40px;
  }
  .page-promo__hero-title {
    font-size: 2.5em;
  }
  .page-promo__hero-description {
    font-size: 1.1em;
  }
  .page-promo__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-promo__button {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  .page-promo__overview-section, .page-promo__promo-list-section, .page-promo__deep-content-section, .page-promo__cta-section {
    padding: 60px 15px;
  }
  .page-promo__section-title {
    font-size: 2em;
  }
  .page-promo__promo-grid {
    grid-template-columns: 1fr;
  }
  .page-promo__card-image {
    height: 200px;
  }
  .page-promo__card-title {
    font-size: 1.4em;
  }
  .page-promo__sub-title {
    font-size: 1.7em;
  }
  .page-promo__cta-title {
    font-size: 2em;
  }
  .page-promo__button--large {
    font-size: 1.1em;
    padding: 15px 30px;
  }

  /* Critical: Prevent content overflow on mobile */
  .page-promo img {
    max-width: 100%;
    height: auto;
  }
  .page-promo {
    overflow-x: hidden;
  }
}

@media (max-width: 480px) {
  .page-promo__hero-title {
    font-size: 2em;
  }
  .page-promo__section-title {
    font-size: 1.8em;
  }
  .page-promo__sub-title {
    font-size: 1.5em;
  }
  .page-promo__cta-title {
    font-size: 1.8em;
  }
  .page-promo__hero-container {
    padding: 30px 15px;
  }
}

/* Ensure all content area images are at least 200px wide/high */
.page-promo__overview-image, .page-promo__card-image, .page-promo__cta-image {
  min-width: 200px;
  min-height: 200px; /* Ensure images are not too small */
}

/* No CSS filter allowed for images */
.page-promo img {
  filter: none; /* Explicitly ensure no filters are applied */
}