.page-promo {
  color: #333333; /* Dark text for light body background */
  padding-top: var(--header-offset, 120px); /* Ensures content starts below fixed header */
  background-color: #f8f8f8; /* Inherited from body, but good to ensure consistency */
}

.page-promo__hero-section {
  position: relative;
  overflow: hidden;
  background-color: #1A202C;
  color: #ffffff;
  padding: 80px 20px 0; /* Adjusted padding to ensure image starts below header */
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-promo__hero-container {
  position: relative;
  z-index: 2; /* Ensure text is above image */
  max-width: 900px;
  margin-bottom: 40px;
}

.page-promo__hero-title {
  font-size: 3.5em;
  font-weight: 700;
  margin-bottom: 20px;
  color: #FFD700; /* Accent color for title */
  line-height: 1.2;
}

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

.page-promo__hero-button {
  display: inline-block;
  background-color: #FFD700; /* Accent color for button */
  color: #1A202C;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

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

.page-promo__hero-image {
  width: 100%;
  height: auto;
  display: block;
  max-width: 1920px; /* Ensure image scales down */
  margin-top: 40px;
  object-fit: cover;
}

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

.page-promo__section-title {
  font-size: 2.8em;
  font-weight: 700;
  color: #1A202C;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

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

.page-promo__text-content {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 40px;
  text-align: justify;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

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

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

.page-promo__card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid #eee;
}

.page-promo__card-title {
  font-size: 1.7em;
  font-weight: 600;
  color: #1A202C;
  padding: 20px 25px 10px;
  line-height: 1.3;
}

.page-promo__card-description {
  font-size: 1em;
  line-height: 1.7;
  color: #555555;
  padding: 0 25px 20px;
  flex-grow: 1;
}

.page-promo__card-button {
  display: block;
  background-color: #FFD700;
  color: #1A202C;
  padding: 12px 25px;
  text-align: center;
  text-decoration: none;
  font-weight: 600;
  border-radius: 0 0 12px 12px;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-promo__card-button:hover {
  background-color: #e5c100;
}

.page-promo__claim-steps {
  list-style: none;
  padding: 0;
  margin-bottom: 60px;
}

.page-promo__step-item {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  margin-bottom: 25px;
  display: flex;
  flex-direction: column;
}

.page-promo__step-title {
  font-size: 1.8em;
  color: #1A202C;
  margin-bottom: 15px;
  font-weight: 600;
}

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

.page-promo__step-button {
  display: inline-block;
  background-color: #1A202C;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 1em;
  font-weight: 500;
  transition: background-color 0.3s ease;
  align-self: flex-start;
  border: none;
  cursor: pointer;
}

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

.page-promo__advantages-list {
  list-style: none;
  padding: 0;
  margin-bottom: 60px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.page-promo__advantage-item {
  background-color: #f0f0f0;
  border-left: 5px solid #FFD700;
  padding: 20px;
  border-radius: 8px;
  font-size: 1.1em;
  line-height: 1.6;
  color: #333333;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-promo__advantage-item strong {
  color: #1A202C;
}

.page-promo__cta-section {
  background-color: #1A202C;
  color: #ffffff;
  padding: 60px 20px;
  text-align: center;
  border-radius: 15px;
  margin-top: 60px;
}

.page-promo__cta-title {
  font-size: 3em;
  font-weight: 700;
  margin-bottom: 20px;
  color: #FFD700;
}

.page-promo__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  line-height: 1.6;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promo__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #1A202C;
  padding: 18px 40px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 1.3em;
  font-weight: 700;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-promo__cta-button:hover {
  background-color: #e5c100;
  transform: translateY(-5px);
}

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

@media (max-width: 768px) {
  .page-promo__hero-section {
    padding: 60px 15px 0;
  }
  .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__content-area {
    padding: 40px 15px;
  }
  .page-promo__section-title {
    font-size: 2em;
  }
  .page-promo__text-content {
    font-size: 1em;
  }
  .page-promo__promotion-grid {
    grid-template-columns: 1fr;
  }
  .page-promo__card-title {
    font-size: 1.5em;
  }
  .page-promo__card-image {
    height: 200px;
  }
  .page-promo__step-title {
    font-size: 1.5em;
  }
  .page-promo__advantage-item {
    font-size: 1em;
  }
  .page-promo__cta-section {
    padding: 40px 15px;
  }
  .page-promo__cta-title {
    font-size: 2em;
  }
  .page-promo__cta-description {
    font-size: 1em;
  }
  .page-promo__cta-button {
    padding: 15px 30px;
    font-size: 1.1em;
  }
  /* Ensure content images do not overflow */
  .page-promo__promotion-card img,
  .page-promo__hero-image {
    max-width: 100%;
    height: auto;
  }
}

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