.page-promo {
  color: #333333; /* Default text color for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-promo__hero-section {
  position: relative;
  overflow: hidden;
  background-color: #0d0d0d; /* Dark background for hero content over image */
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

.page-promo__hero-container {
  position: relative;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}

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

.page-promo__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #ffffff;
  max-width: 900px;
  padding: 20px;
  z-index: 10;
}

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

.page-promo__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

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

.page-promo__button {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  cursor: pointer;
  text-align: center;
}

.page-promo__button--primary {
  background-color: #FFD700;
  color: #8B0000;
  border: 2px solid #FFD700;
}

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

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

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

.page-promo__section {
  padding: 60px 20px;
  background-color: #ffffff;
}

.page-promo__section:nth-of-type(even) {
  background-color: #f8f8f8;
}

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

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

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

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

.page-promo__feature-item {
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promo__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-promo__feature-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

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

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

.page-promo__promo-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: center;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-promo__promo-card-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}

.page-promo__promo-card-title {
  font-size: 1.7em;
  color: #8B0000;
  margin: 20px 15px 10px;
}

.page-promo__promo-card-description {
  font-size: 0.95em;
  color: #666666;
  padding: 0 15px 20px;
  flex-grow: 1;
}

.page-promo__promo-card .page-promo__button {
  margin: 0 15px 20px;
  width: calc(100% - 30px);
}

.page-promo__claim-steps {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  gap: 30px;
}

.page-promo__step-item {
  background-color: #fff;
  border-left: 5px solid #FFD700;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

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

.page-promo__actions-bottom, .page-promo__actions-security, .page-promo__actions-faq {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 50px;
}

.page-promo__section--security {
    background-color: #f0f0f0;
}

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

.page-promo__security-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    text-align: center;
    padding-bottom: 20px;
}

.page-promo__security-image {
    width: 100%;
    height: 200px; /* Ensure minimum size */
    object-fit: cover;
    display: block;
    margin-bottom: 20px;
}

.page-promo__security-card-title {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 10px;
    padding: 0 15px;
}

.page-promo__security-card-description {
    font-size: 0.95em;
    color: #666666;
    padding: 0 15px;
}

.page-promo__security-tip {
    font-size: 1.1em;
    color: #8B0000;
    text-align: center;
    margin-top: 40px;
    font-weight: bold;
}

.page-promo__faq-list {
  margin-top: 40px;
}

.page-promo__faq-item {
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 20px 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.page-promo__faq-question {
  font-size: 1.5em;
  color: #8B0000;
  margin-bottom: 10px;
}

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

.page-promo__section--cta {
  background-color: #8B0000;
  color: #ffffff;
  text-align: center;
}

.page-promo__container--cta {
  max-width: 900px;
}

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

.page-promo__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #f0f0f0;
}

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

/* Responsive adjustments */
@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.4em;
  }

  .page-promo__feature-title {
    font-size: 1.6em;
  }

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

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

@media (max-width: 768px) {
  .page-promo__hero-content {
    position: static;
    transform: none;
    padding: 40px 20px;
  }

  .page-promo__hero-image {
    height: 300px;
  }

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

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

  .page-promo__hero-actions, .page-promo__actions-bottom, .page-promo__actions-security, .page-promo__actions-faq, .page-promo__cta-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-promo__button {
    width: 100%;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }

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

  .page-promo__feature-list, .page-promo__promo-grid, .page-promo__security-features {
    grid-template-columns: 1fr;
  }

  .page-promo__promo-card-image, .page-promo__security-image {
    max-width: 100%;
    height: auto; /* Ensure image scales correctly */
    min-height: 200px; /* Enforce minimum height */
  }

  .page-promo__promo-card .page-promo__button {
    max-width: none;
  }

  .page-promo__step-item {
    padding: 20px;
  }

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

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

  /* Ensure content area images do not overflow */
  .page-promo img {
    max-width: 100%;
    height: auto;
  }
  .page-promo {
    overflow-x: hidden;
  }
}

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

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

  .page-promo__cta-title {
    font-size: 1.8em;
  }
  .page-promo__button {
    font-size: 1em;
    padding: 12px 25px;
  }
}