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

.page-promo__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 450px;
  background-color: #000000; /* Dark background for hero section */
}

.page-promo__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  opacity: 0.6; /* Slightly dim image to make text pop */
}

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

.page-promo__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Primary gold color */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  font-weight: bold;
}

.page-promo__hero-description {
  font-size: 1.3em;
  color: #f0f0f0;
  margin-bottom: 30px;
}

.page-promo__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Primary gold for CTA */
  color: #8B0000; /* Dark red text for contrast */
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid #FFD700;
}

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

.page-promo__cta-secondary-button {
  display: inline-block;
  background-color: transparent;
  color: #FFD700; /* Primary gold for secondary CTA text */
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease, color 0.3s ease;
  border: 2px solid #FFD700;
  margin-left: 20px;
}

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

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

.page-promo__section-title {
  font-size: 2.8em;
  color: #8B0000; /* Secondary dark red for section titles */
  margin-bottom: 25px;
  font-weight: bold;
}

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

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

.page-promo__card {
  background-color: #ffffff;
  border-radius: 15px;
  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 #f0f0f0;
}

.page-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: 10px;
  margin-bottom: 20px;
  min-width: 200px; /* Ensure min size */
  min-height: 200px;
}

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

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

.page-promo__card-button {
  display: inline-block;
  background-color: #FFD700;
  color: #8B0000;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

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

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

.page-promo__feature-item {
  background-color: #f9f9f9;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  border: 1px solid #eeeeee;
  transition: box-shadow 0.3s ease;
}

.page-promo__feature-item:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.page-promo__feature-icon {
  width: 250px;
  height: 150px;
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 10px;
  min-width: 200px; /* Ensure min size */
  min-height: 200px;
}

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

.page-promo__feature-description {
  color: #666666;
  margin-bottom: 20px;
}

.page-promo__feature-button {
  display: inline-block;
  background-color: #8B0000; /* Secondary dark red for feature buttons */
  color: #FFD700; /* Gold text */
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-promo__feature-button:hover {
  background-color: #6a0000;
}

.page-promo__cashback-details {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
  background-color: #f0f0f0;
  border-radius: 15px;
  padding: 40px;
}

.page-promo__cashback-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 10px;
  min-width: 200px; /* Ensure min size */
  min-height: 200px;
}

.page-promo__cashback-content {
  flex: 1;
  max-width: 500px;
  text-align: left;
}

.page-promo__sub-title {
  font-size: 2em;
  color: #8B0000;
  margin-bottom: 20px;
}

.page-promo__cashback-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-promo__cashback-content ul li {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="%23FFD700"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z"/></svg>') no-repeat left center;
  background-size: 20px;
  padding-left: 30px;
  margin-bottom: 10px;
  color: #555555;
}

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

.page-promo__event-card {
  background-color: #8B0000; /* Dark red background for event cards */
  color: #ffffff;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

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

.page-promo__event-date, .page-promo__event-prize {
  font-size: 1.1em;
  margin-bottom: 10px;
  color: #f0f0f0;
}

.page-promo__event-button {
  display: inline-block;
  background-color: #FFD700;
  color: #8B0000;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  margin-top: 15px;
}

.page-promo__event-button:hover {
  background-color: #e6c200;
}

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

.page-promo__claim-steps li {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="%238B0000"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-6h2v6zm0-8h-2V7h2v2z"/></svg>') no-repeat left 5px;
  background-size: 24px;
  padding-left: 40px;
  margin-bottom: 20px;
  font-size: 1.1em;
  color: #444444;
}

.page-promo__claim-steps li strong {
  color: #8B0000;
}

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

.page-promo__terms-list li {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="%23FFD700"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-2h2v2zm0-4h-2V7h2v6z"/></svg>') no-repeat left 5px;
  background-size: 20px;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 1em;
  color: #555555;
}

.page-promo__faq {
  margin-top: 60px;
  text-align: left;
}

.page-promo__faq-item {
  background-color: #f9f9f9;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  border: 1px solid #eeeeee;
}

.page-promo__faq-question {
  font-size: 1.5em;
  color: #8B0000;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-promo__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2em;
  color: #FFD700;
}

.page-promo__faq-question.active::after {
  content: '-';
}

.page-promo__faq-answer {
  font-size: 1em;
  color: #666666;
  display: none;
  padding-top: 10px;
  border-top: 1px solid #e0e0e0;
  margin-top: 10px;
}

.page-promo__faq-answer.active {
  display: block;
}

.page-promo__cta-final {
  background-color: #8B0000;
  color: #ffffff;
  padding: 80px 20px;
  margin-bottom: 0;
  border-radius: 0;
}

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

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

/* Responsive Design */
@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 {
    padding-top: var(--header-offset, 120px); /* Ensure mobile content is not hidden */
  }

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

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

  .page-promo__cta-button, .page-promo__cta-secondary-button {
    font-size: 1em;
    padding: 12px 25px;
    margin: 10px 5px;
  }

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

  .page-promo__section-intro {
    font-size: 1em;
  }

  .page-promo__card {
    padding: 20px;
  }

  .page-promo__card-image {
    height: 200px;
  }

  .page-promo__cashback-details {
    flex-direction: column;
    padding: 20px;
  }

  .page-promo__cashback-content {
    text-align: center;
  }

  .page-promo__cashback-content ul li {
    background-position: center left;
  }

  .page-promo__claim-steps, .page-promo__terms-list {
    margin: 20px auto;
    padding: 0 10px;
  }

  .page-promo__claim-steps li, .page-promo__terms-list li {
    font-size: 0.95em;
    padding-left: 30px;
  }

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

  /* Critical: Prevent image overflow on mobile */
  .page-promo img {
    max-width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 200px; /* Ensure images are not too small */
  }
  .page-promo__feature-icon {
    width: 100%;
    height: auto;
    max-width: 250px;
  }
  .page-promo__cashback-image {
    width: 100%;
    height: auto;
  }
  .page-promo__card-image {
    width: 100%;
    height: auto;
  }
}

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

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

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

  .page-promo__cta-button, .page-promo__cta-secondary-button {
    display: block;
    margin: 10px auto;
  }
}