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

.page-promo__section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.page-promo__hero-section {
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  position: relative;
  overflow: hidden;
  color: #ffffff; /* Text color for hero section with potentially dark image */
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

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

.page-promo__hero-container {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 40px;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay for text readability */
  border-radius: 10px;
}

.page-promo__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Auxiliary color for emphasis */
  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.3em;
  margin-bottom: 30px;
  line-height: 1.6;
  color: #f0f0f0;
}

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

.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.2s ease;
  cursor: pointer;
  text-align: center;
}

.page-promo__button--primary {
  background-color: #B80000; /* Main brand color */
  color: #ffffff;
  border: 2px solid #B80000;
}

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

.page-promo__button--secondary {
  background-color: #FFD700; /* Auxiliary brand color */
  color: #333333;
  border: 2px solid #FFD700;
}

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

.page-promo__section-title {
  font-size: 2.8em;
  color: #B80000; /* Main brand color */
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

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

.page-promo__section-intro {
  font-size: 1.1em;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #555555;
}

.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 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: left;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.page-promo__promo-card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-promo__promo-card-title {
  font-size: 1.6em;
  color: #B80000;
  margin-bottom: 15px;
  line-height: 1.3;
}

.page-promo__promo-card-description {
  font-size: 1em;
  color: #666666;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promo__claim-steps {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  text-align: left;
}

.page-promo__claim-step {
  background-color: #f9f9f9;
  border-left: 5px solid #FFD700;
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-promo__claim-step-title {
  font-size: 1.5em;
  color: #B80000;
  margin-bottom: 10px;
}

.page-promo__claim-step p {
  color: #555555;
  line-height: 1.7;
}

.page-promo__claim-step a {
  color: #B80000;
  text-decoration: none;
  font-weight: bold;
}

.page-promo__claim-step a:hover {
  text-decoration: underline;
}

.page-promo__how-to-claim-cta {
  margin-top: 40px;
}

.page-promo__terms-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  text-align: left;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-promo__terms-item {
  background-color: #fffaf0;
  border-left: 4px solid #B80000;
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 5px;
  color: #444444;
  line-height: 1.6;
}

.page-promo__terms-cta {
  margin-top: 40px;
}

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

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

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

.page-promo__detail-card-title {
  font-size: 1.8em;
  color: #B80000;
  margin-bottom: 15px;
  line-height: 1.3;
}

.page-promo__detail-card-title a {
  color: #B80000;
  text-decoration: none;
}

.page-promo__detail-card-title a:hover {
  text-decoration: underline;
}

.page-promo__detail-card-description {
  font-size: 1em;
  color: #666666;
  line-height: 1.6;
  margin-bottom: 25px;
}

.page-promo__faq-item {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  text-align: left;
}

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

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

.page-promo__cta-final {
  background-color: #B80000;
  color: #ffffff;
  padding: 80px 20px;
  border-radius: 15px;
  margin: 60px auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.page-promo__cta-final .page-promo__section-title {
  color: #FFD700;
}

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

.page-promo__cta-final .page-promo__section-intro {
  color: #f0f0f0;
}

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

/* 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 {
    min-height: 400px;
    padding: 40px 15px;
  }

  .page-promo__hero-container {
    padding: 30px;
  }

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

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

  .page-promo__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-promo__button {
    width: 100%;
    padding: 12px 20px;
    font-size: 1em;
  }

  .page-promo__section {
    padding: 40px 15px;
  }

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

  .page-promo__promo-grid,
  .page-promo__detail-list {
    grid-template-columns: 1fr;
  }

  /* Ensure all images in content area are responsive and not smaller than 200px */
  .page-promo__promo-card-image {
    width: 100%;
    height: auto;
    min-height: 200px;
  }
  .page-promo img {
    max-width: 100%;
    height: auto;
  }
  .page-promo__cta-final {
    padding: 60px 15px;
  }

  .page-promo__cta-actions {
    flex-direction: column;
    gap: 15px;
  }
}

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

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

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

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

  .page-promo__faq-question {
    font-size: 1.2em;
  }
}