.page-promo {
  padding-top: var(--header-offset, 120px);
  color: #f0f0f0; /* Light text for dark background, adjusted to be visible */
  background-color: #0A2342; /* Main brand color for page background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

.page-promo__hero-section {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  padding: 0;
}

.page-promo__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7); /* Darken image slightly for text readability */
}

.page-promo__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  max-width: 900px;
  width: 90%;
  z-index: 1;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4); /* Semi-transparent overlay for text */
  border-radius: 10px;
}

.page-promo__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #E5B80B; /* Accent color for main title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
  line-height: 1.2;
}

.page-promo__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #ffffff;
}

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

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

.page-promo__button--primary {
  background-color: #E5B80B; /* Accent color */
  color: #0A2342;
  border: 2px solid #E5B80B;
}

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

.page-promo__button--secondary {
  background-color: transparent;
  color: #E5B80B;
  border: 2px solid #E5B80B;
}

.page-promo__button--secondary:hover {
  background-color: #E5B80B;
  color: #0A2342;
  transform: translateY(-2px);
}

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

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

.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: #1a3a5a; /* Darker shade of main color */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
  text-align: center;
  padding-bottom: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease;
}

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

.page-promo__card-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  margin-bottom: 20px;
  filter: none; /* Ensure no CSS filter is applied */
}

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

.page-promo__card-description {
  font-size: 1em;
  color: #e0e0e0;
  padding: 0 20px;
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-promo__promo-card .page-promo__button {
  margin-top: auto;
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
  padding: 10px 25px;
  font-size: 1em;
}

.page-promo__vip-section,
.page-promo__how-to-claim-section,
.page-promo__terms-section,
.page-promo__faq-section,
.page-promo__cta-section {
  padding: 60px 0;
}

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

.page-promo__vip-feature-item {
  background-color: #1a3a5a;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.page-promo__vip-feature-title {
  color: #E5B80B;
  font-size: 1.5em;
  margin-bottom: 15px;
}

.page-promo__vip-feature-description {
  color: #e0e0e0;
  font-size: 0.95em;
}

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

.page-promo__step-item {
  background-color: #1a3a5a;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.page-promo__step-title {
  color: #E5B80B;
  font-size: 1.6em;
  margin-bottom: 10px;
}

.page-promo__step-description {
  color: #e0e0e0;
  font-size: 1em;
}

.page-promo__step-description a {
  color: #f0c94f;
  text-decoration: underline;
}

.page-promo__step-description a:hover {
  color: #fff;
}

.page-promo__terms-list {
  list-style: none;
  padding: 0;
  margin-top: 50px;
}

.page-promo__term-item {
  background-color: #1a3a5a;
  border-left: 5px solid #E5B80B;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 5px;
  color: #e0e0e0;
  font-size: 1em;
}

.page-promo__term-item strong {
  color: #E5B80B;
}

.page-promo__terms-reminder {
  text-align: center;
  margin-top: 40px;
  font-size: 1.1em;
  color: #f0f0f0;
}

.page-promo__terms-reminder a {
  color: #f0c94f;
  text-decoration: underline;
}

.page-promo__terms-reminder a:hover {
  color: #fff;
}

.page-promo__faq-item {
  background-color: #1a3a5a;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.page-promo__faq-question {
  color: #E5B80B;
  font-size: 1.4em;
  margin-bottom: 10px;
}

.page-promo__faq-answer {
  color: #e0e0e0;
  font-size: 1em;
}

.page-promo__cta-section {
  text-align: center;
  background-color: #1a3a5a; /* Slightly darker background for CTA */
  padding: 80px 20px;
  margin-top: 60px;
}

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

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

@media (max-width: 768px) {
  .page-promo {
    padding-top: var(--header-offset, 80px); /* Adjust for mobile header */
  }
  .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%;
    margin: 0 auto;
  }
  .page-promo__section-title {
    font-size: 1.8em;
  }
  .page-promo__section-intro {
    font-size: 0.95em;
  }
  .page-promo__promo-grid,
  .page-promo__vip-features,
  .page-promo__steps-list {
    grid-template-columns: 1fr;
  }
  .page-promo__promo-card,
  .page-promo__vip-feature-item,
  .page-promo__step-item,
  .page-promo__faq-item {
    padding: 20px;
  }
  .page-promo__card-image {
    height: 200px;
  }
  /* Ensure all images within .page-promo are responsive */
  .page-promo img {
    max-width: 100%;
    height: auto; /* Important for mobile overflow */
  }
  /* Content area image size check for mobile */
  .page-promo__promo-card .page-promo__card-image, 
  .page-promo__hero-image {
    min-width: 200px; /* Enforce min size for content images */
    min-height: 200px;
  }
  .page-promo__card-title {
    font-size: 1.5em;
  }
  .page-promo__faq-question {
    font-size: 1.2em;
  }
}

@media (max-width: 480px) {
  .page-promo__hero-title {
    font-size: 1.8em;
  }
  .page-promo__hero-description {
    font-size: 0.9em;
  }
  .page-promo__button {
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-promo__section-title {
    font-size: 1.6em;
  }
}