.page-promo {
  color: #ffffff; /* Light text for dark body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

.page-promo__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, #1A1A1A 0%, #333333 100%);
  position: relative;
  overflow: hidden;
}

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

.page-promo__hero-title {
  font-size: 3.5em;
  color: #FFD700;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

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

.page-promo__hero-button {
  display: inline-block;
  background-color: #FFD700;
  color: #1A1A1A;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.3em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

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

.page-promo__hero-image-wrapper {
  width: 100%;
  max-width: 1200px;
  margin-top: 40px;
  z-index: 0;
}

.page-promo__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-promo__why-section {
  background-color: #1A1A1A;
  padding: 80px 20px;
  text-align: center;
}

.page-promo__why-container {
  max-width: 1200px;
  margin: 0 auto;
}

.page-promo__why-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 30px;
}

.page-promo__why-text {
  font-size: 1.1em;
  color: #cccccc;
  max-width: 900px;
  margin: 0 auto 50px auto;
}

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

.page-promo__feature-card {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.page-promo__feature-card:hover {
  transform: translateY(-10px);
}

.page-promo__feature-icon {
  width: 100%;
  height: auto;
  max-width: 400px;
  margin-bottom: 20px;
  border-radius: 8px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-promo__feature-heading {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-promo__feature-description {
  font-size: 1em;
  color: #b0b0b0;
}

.page-promo__current-offers-section {
  padding: 80px 20px;
  background-color: #0d0d0d;
}

.page-promo__current-offers-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.page-promo__current-offers-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 30px;
}

.page-promo__current-offers-intro {
  font-size: 1.1em;
  color: #cccccc;
  max-width: 900px;
  margin: 0 auto 50px auto;
}

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

.page-promo__promo-card {
  background-color: rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  overflow: hidden;
  text-align: left;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-promo__promo-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.page-promo__promo-details {
  padding: 25px;
}

.page-promo__promo-heading {
  font-size: 1.6em;
  margin-bottom: 15px;
}

.page-promo__promo-heading a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-promo__promo-heading a:hover {
  color: #e6c200;
  text-decoration: underline;
}

.page-promo__promo-description {
  font-size: 0.95em;
  color: #b0b0b0;
  margin-bottom: 20px;
}

.page-promo__promo-button {
  display: inline-block;
  background-color: #FFD700;
  color: #1A1A1A;
  padding: 10px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 1em;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

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

.page-promo__how-to-claim-section {
  padding: 80px 20px;
  background-color: #1A1A1A;
  text-align: center;
}

.page-promo__how-to-claim-container {
  max-width: 1200px;
  margin: 0 auto;
}

.page-promo__how-to-claim-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 30px;
}

.page-promo__how-to-claim-intro {
  font-size: 1.1em;
  color: #cccccc;
  max-width: 900px;
  margin: 0 auto 50px auto;
}

.page-promo__steps-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.page-promo__step-card {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.page-promo__step-number {
  font-size: 3em;
  font-weight: bold;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-promo__step-heading {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-promo__step-description {
  font-size: 0.95em;
  color: #b0b0b0;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promo__step-button {
  display: inline-block;
  background-color: #FFD700;
  color: #1A1A1A;
  padding: 10px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 1em;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

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

.page-promo__how-to-claim-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  margin-top: 40px;
}

.page-promo__faq-section {
  padding: 80px 20px;
  background-color: #0d0d0d;
}

.page-promo__faq-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.page-promo__faq-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 40px;
}

.page-promo__faq-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  margin-bottom: 20px;
  padding: 25px;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

.page-promo__faq-answer {
  font-size: 1em;
  color: #b0b0b0;
  display: none; /* Hidden by default, toggled by JS */
}

.page-promo__faq-button {
  display: inline-block;
  background-color: #FFD700;
  color: #1A1A1A;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.3em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
  margin-top: 40px;
}

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

.page-promo__cta-section {
  padding: 80px 20px;
  background: linear-gradient(45deg, #FFD700 0%, #e6c200 100%);
  text-align: center;
  color: #1A1A1A;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.page-promo__cta-container {
  max-width: 900px;
  z-index: 1;
  margin-bottom: 40px;
}

.page-promo__cta-title {
  font-size: 3em;
  color: #1A1A1A;
  margin-bottom: 20px;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-promo__cta-description {
  font-size: 1.2em;
  color: #333333;
  margin-bottom: 30px;
}

.page-promo__cta-button {
  display: inline-block;
  background-color: #1A1A1A;
  color: #FFD700;
  padding: 18px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.4em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

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

.page-promo__cta-image {
  width: 100%;
  max-width: 1000px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  margin-top: 40px;
  z-index: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promo__hero-title {
    font-size: 3em;
  }
  .page-promo__hero-description {
    font-size: 1.1em;
  }
  .page-promo__why-title, .page-promo__current-offers-title, .page-promo__how-to-claim-title, .page-promo__faq-title, .page-promo__cta-title {
    font-size: 2.5em;
  }
}

@media (max-width: 768px) {
  .page-promo__hero-section {
    padding: 40px 15px;
  }
  .page-promo__hero-title {
    font-size: 2.5em;
  }
  .page-promo__hero-description {
    font-size: 1em;
  }
  .page-promo__hero-button {
    padding: 12px 30px;
    font-size: 1.1em;
  }

  .page-promo__why-section, .page-promo__current-offers-section, .page-promo__how-to-claim-section, .page-promo__faq-section, .page-promo__cta-section {
    padding: 60px 15px;
  }

  .page-promo__why-title, .page-promo__current-offers-title, .page-promo__how-to-claim-title, .page-promo__faq-title, .page-promo__cta-title {
    font-size: 2em;
  }

  .page-promo__why-text, .page-promo__current-offers-intro, .page-promo__how-to-claim-intro {
    font-size: 0.95em;
  }

  .page-promo__why-features, .page-promo__promo-list, .page-promo__steps-wrapper {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .page-promo__feature-heading, .page-promo__promo-heading, .page-promo__step-heading {
    font-size: 1.4em;
  }

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

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

  .page-promo__faq-button, .page-promo__cta-button {
    padding: 12px 30px;
    font-size: 1.1em;
  }

  /* Mobile content image responsiveness */
  .page-promo__hero-image,
  .page-promo__feature-icon,
  .page-promo__promo-image,
  .page-promo__how-to-claim-image,
  .page-promo__cta-image {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-promo__hero-title {
    font-size: 2em;
  }
  .page-promo__why-title, .page-promo__current-offers-title, .page-promo__how-to-claim-title, .page-promo__faq-title, .page-promo__cta-title {
    font-size: 1.8em;
  }
  .page-promo__hero-button, .page-promo__faq-button, .page-promo__cta-button {
    font-size: 1em;
    padding: 10px 25px;
  }
}