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

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

.page-promo__hero-section {
  background-color: #FFD700; /* Gold background for hero */
  padding: 80px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

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

.page-promo__hero-title {
  font-size: 3.5em;
  color: #8B0000; /* Dark red for prominent title */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  font-weight: bold;
}

.page-promo__hero-description {
  font-size: 1.3em;
  color: #333333;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-promo__hero-button {
  display: inline-block;
  background-color: #8B0000; /* Dark red button */
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

.page-promo__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-promo__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2; /* Subtle background image */
}

.page-promo__overview-section {
  padding: 60px 0;
  background-color: #f9f9f9;
  text-align: center;
}

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

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

.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: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #eee;
}

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

.page-promo__card-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px; /* Ensure min size */
  min-height: 200px; /* Ensure min size */
}

.page-promo__card-title {
  font-size: 1.8em;
  color: #8B0000;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promo__card-text {
  color: #666666;
  font-size: 1em;
  margin-bottom: 25px;
}

.page-promo__card-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #8B0000; /* Dark red text on gold */
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.page-promo__detailed-promos {
  padding: 60px 0;
  background-color: #ffffff;
}

.page-promo__promo-feature {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
}

.page-promo__promo-feature--reverse {
  flex-direction: row-reverse;
}

.page-promo__feature-image {
  flex: 1;
  max-width: 50%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  min-width: 200px; /* Ensure min size */
  min-height: 200px; /* Ensure min size */
}

.page-promo__feature-content {
  flex: 1;
  max-width: 50%;
}

.page-promo__feature-title {
  font-size: 2em;
  color: #8B0000;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promo__feature-text {
  color: #555555;
  font-size: 1.05em;
  margin-bottom: 20px;
}

.page-promo__feature-list {
  list-style: disc inside;
  color: #666666;
  margin-bottom: 25px;
  padding-left: 20px;
}

.page-promo__feature-list li {
  margin-bottom: 8px;
}

.page-promo__feature-button {
  display: inline-block;
  background-color: #8B0000; /* Dark red button */
  color: #ffffff;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.page-promo__how-to-claim-section {
  background-color: #f9f9f9;
  padding: 60px 0;
  text-align: center;
}

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

.page-promo__step-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #eee;
}

.page-promo__step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
}

.page-promo__step-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px; /* Ensure min size */
  min-height: 200px; /* Ensure min size */
}

.page-promo__step-title {
  font-size: 1.8em;
  color: #FFD700; /* Gold title */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promo__step-text {
  color: #666666;
  font-size: 1em;
  margin-bottom: 25px;
}

.page-promo__step-button {
  display: inline-block;
  background-color: #8B0000; /* Dark red button */
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-promo__step-button:hover {
  background-color: #a00000;
}

.page-promo__terms-section {
  padding: 60px 0;
  background-color: #ffffff;
}

.page-promo__terms-list {
  list-style: disc inside;
  color: #555555;
  font-size: 1.05em;
  max-width: 900px;
  margin: 30px auto 40px auto;
  padding-left: 20px;
}

.page-promo__terms-list li {
  margin-bottom: 10px;
}

.page-promo__terms-list strong {
  color: #8B0000;
}

.page-promo__terms-link {
  display: inline-block;
  color: #FFD700; /* Gold link */
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  border-bottom: 2px solid #FFD700;
  padding-bottom: 5px;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.page-promo__terms-link:hover {
  color: #e6c200;
  border-color: #e6c200;
}

.page-promo__why-choose-section {
  background-color: #FFD700; /* Gold background */
  padding: 60px 0;
  text-align: center;
}

.page-promo__why-choose-section .page-promo__section-title {
  color: #8B0000; /* Dark red title on gold */
}

.page-promo__why-choose-section .page-promo__section-description {
  color: #333333;
}

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

.page-promo__advantage-item {
  background-color: #fefefe;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  padding: 25px;
  text-align: left;
  border-left: 5px solid #8B0000; /* Dark red accent */
}

.page-promo__advantage-title {
  font-size: 1.5em;
  color: #8B0000;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-promo__advantage-text {
  color: #555555;
  font-size: 0.95em;
}

.page-promo__cta-final-section {
  padding: 80px 0;
  background-color: #8B0000; /* Dark red background */
  text-align: center;
}

.page-promo__cta-final-section .page-promo__section-title {
  color: #FFD700; /* Gold title on dark red */
}

.page-promo__cta-final-section .page-promo__section-description {
  color: #f0f0f0;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

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

.page-promo__cta-button {
  display: inline-block;
  padding: 18px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.4em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease, color 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.page-promo__cta-button--primary {
  background-color: #FFD700; /* Gold button */
  color: #8B0000; /* Dark red text */
}

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

.page-promo__cta-button--secondary {
  background-color: transparent;
  border: 2px solid #FFD700; /* Gold border */
  color: #FFD700; /* Gold text */
}

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

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-promo__hero-title {
    font-size: 3em;
  }
  .page-promo__promo-feature {
    flex-direction: column;
    text-align: center;
  }
  .page-promo__promo-feature--reverse {
    flex-direction: column;
  }
  .page-promo__feature-image,
  .page-promo__feature-content {
    max-width: 100%;
  }
  .page-promo__feature-image {
    margin-bottom: 30px;
  }
  .page-promo__feature-list {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .page-promo__hero-section {
    padding: 60px 20px;
  }
  .page-promo__hero-title {
    font-size: 2.5em;
  }
  .page-promo__hero-description {
    font-size: 1.1em;
  }
  .page-promo__hero-button {
    padding: 12px 25px;
    font-size: 1.1em;
  }
  .page-promo__section-title {
    font-size: 2em;
  }
  .page-promo__promo-grid,
  .page-promo__steps-grid,
  .page-promo__advantages-grid {
    grid-template-columns: 1fr;
  }
  .page-promo__promo-card, .page-promo__step-card, .page-promo__advantage-item {
    padding: 25px;
  }
  .page-promo__card-title, .page-promo__step-title {
    font-size: 1.6em;
  }
  .page-promo__feature-title {
    font-size: 1.8em;
  }
  .page-promo__cta-button {
    font-size: 1.2em;
    padding: 15px 30px;
  }
  .page-promo__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  /* Mobile content area images must not overflow */
  .page-promo img {
    max-width: 100%;
    height: auto;
  }
  .page-promo__hero-section {
    width: auto; /* Remove width: 100% to prevent overflow with padding */
  }
}

@media (max-width: 480px) {
  .page-promo__hero-title {
    font-size: 2em;
  }
  .page-promo__hero-description {
    font-size: 1em;
  }
  .page-promo__section-title {
    font-size: 1.8em;
  }
  .page-promo__promo-card,
  .page-promo__step-card {
    padding: 20px;
  }
  .page-promo__card-title,
  .page-promo__step-title {
    font-size: 1.4em;
  }
  .page-promo__feature-title {
    font-size: 1.6em;
  }
  .page-promo__cta-button {
    font-size: 1.1em;
    padding: 12px 25px;
  }
}