.page-promo {
  color: #ffffff; /* Light text for dark body background */
}

.page-promo__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
}

.page-promo__hero-container {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px; /* Minimum height for hero section */
}

.page-promo__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(0.5); /* Darken image for text readability */
}

.page-promo__hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 40px 20px;
  max-width: 900px;
}

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

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

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

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

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

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

.page-promo__button--secondary:hover {
  background-color: #FFD700;
  color: #1A202C;
  transform: translateY(-3px);
}

.page-promo__button--small {
  padding: 10px 20px;
  font-size: 0.9em;
}

.page-promo__button--large {
  padding: 18px 35px;
  font-size: 1.2em;
}

.page-promo__section {
  padding: 80px 20px;
  background-color: #1A202C;
  margin-bottom: 20px;
}

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

.page-promo__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
}

.page-promo__container--reverse {
  flex-direction: row-reverse;
}

.page-promo__content-block {
  flex: 1;
}

.page-promo__image-wrapper {
  flex: 1;
  min-width: 300px; /* Ensure images have enough space */
}

.page-promo__section-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  min-width: 200px;
  min-height: 200px;
}

.page-promo__section-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 25px;
  line-height: 1.3;
}

.page-promo__section-text {
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 30px;
  color: #e0e0e0;
}

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

.page-promo__offer-card, .page-promo__detail-card {
  background-color: #2a303d;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  padding-bottom: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-promo__card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

.page-promo__card-title, .page-promo__detail-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
  padding: 0 20px;
}

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

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

.page-promo__card-description, .page-promo__detail-description {
  font-size: 0.95em;
  color: #c0c0c0;
  line-height: 1.6;
  padding: 0 20px;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-promo__text-center {
  text-align: center;
  margin-top: 50px;
}

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

.page-promo__feature-item {
  background-color: #2a303d;
  padding: 15px 20px;
  border-radius: 8px;
  font-size: 1.05em;
  color: #FFD700;
  display: flex;
  align-items: center;
  gap: 10px;
}

.page-promo__feature-item::before {
  content: '✔';
  color: #FFD700;
  font-weight: bold;
  font-size: 1.2em;
}

.page-promo__steps-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-promo__step-item {
  background-color: #2a303d;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 15px;
  font-size: 1.1em;
  line-height: 1.6;
  color: #e0e0e0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: relative;
  padding-left: 60px;
}

.page-promo__step-item strong {
  color: #FFD700;
}

.page-promo__step-item::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #FFD700;
  color: #1A202C;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2em;
}

.page-promo__how-to-claim .page-promo__content-block {
  counter-reset: step-counter;
}

.page-promo__grid--details {
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.page-promo__detail-card {
  padding: 30px;
  text-align: left;
}

.page-promo__detail-card .page-promo__button {
  margin-top: 20px;
}

.page-promo__faq-item {
  background-color: #2a303d;
  padding: 25px;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.page-promo__faq-answer {
  font-size: 1.05em;
  line-height: 1.6;
  color: #e0e0e0;
}

.page-promo__cta-section {
  background-color: #11151e;
  padding: 100px 20px;
  text-align: center;
}

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

.page-promo__cta-description {
  font-size: 1.2em;
  color: #e0e0e0;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .page-promo__container {
    flex-direction: column;
    text-align: center;
  }
  .page-promo__container--reverse {
    flex-direction: column;
  }
  .page-promo__content-block, .page-promo__image-wrapper {
    width: 100%;
  }
  .page-promo__section-image {
    margin-bottom: 30px;
  }
}

@media (max-width: 992px) {
  .page-promo__hero-title {
    font-size: 2.8em;
  }
  .page-promo__section-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-promo__hero-section {
    padding: 40px 15px;
    padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
  }
  .page-promo__hero-title {
    font-size: 2em;
  }
  .page-promo__hero-description {
    font-size: 1em;
  }
  .page-promo__hero-actions {
    flex-direction: column;
  }
  .page-promo__button {
    width: 100%;
  }
  .page-promo__section {
    padding: 60px 15px;
  }
  .page-promo__section-title {
    font-size: 1.8em;
  }
  .page-promo__section-text, .page-promo__card-description, .page-promo__detail-description, .page-promo__faq-answer, .page-promo__cta-description {
    font-size: 0.95em;
  }
  .page-promo__grid, .page-promo__feature-list, .page-promo__grid--details {
    grid-template-columns: 1fr;
  }
  .page-promo__card-title, .page-promo__detail-title {
    font-size: 1.4em;
  }
  .page-promo__faq-question {
    font-size: 1.2em;
  }
  .page-promo__cta-title {
    font-size: 2.2em;
  }

  /* Mobile content area image constraint */
  .page-promo img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Enforce minimum size even on mobile if it's a content image */
    min-height: 200px;
  }
  .page-promo__hero-image {
    filter: brightness(0.4); /* Slightly darker for mobile readability */
  }
}

@media (max-width: 480px) {
  .page-promo__hero-title {
    font-size: 1.8em;
  }
  .page-promo__section-title {
    font-size: 1.6em;
  }
  .page-promo__cta-title {
    font-size: 1.8em;
  }
  .page-promo__step-item {
    padding-left: 50px;
  }
  .page-promo__step-item::before {
    width: 30px;
    height: 30px;
    font-size: 1em;
    left: 15px;
  }
}