.page-promo {
  color: #333333;
  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 {
  position: relative;
  overflow: hidden;
  background-color: #000000; /* Dark background for contrast with gold elements */
  color: #ffffff;
  padding: 80px 0 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-promo__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  z-index: 1;
}

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

.page-promo__hero-content {
  position: relative;
  z-index: 3;
}

.page-promo__hero-title {
  font-size: 3.2em;
  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;
  margin-bottom: 40px;
  color: #f0f0f0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promo__cta-button,
.page-promo__secondary-button {
  display: inline-block;
  padding: 15px 30px;
  margin: 10px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  font-size: 1.1em;
}

.page-promo__cta-button {
  background-color: #FFD700;
  color: #000000;
  border: 2px solid #FFD700;
}

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

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

.page-promo__secondary-button:hover {
  background-color: #FFD700;
  color: #000000;
  transform: translateY(-3px);
}

.page-promo__overview-section,
.page-promo__promo-grid,
.page-promo__vip-section,
.page-promo__how-to-claim,
.page-promo__faq-section,
.page-promo__terms-section,
.page-promo__cta-download-section {
  padding: 60px 0;
  background-color: #f8f8f8;
}

.page-promo__overview-section,
.page-promo__how-to-claim,
.page-promo__faq-section,
.page-promo__terms-section {
  background-color: #ffffff;
}

.page-promo__section-title {
  font-size: 2.5em;
  color: #000000;
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
}

.page-promo__section-intro {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 30px auto;
  color: #555555;
}

.page-promo__section-text {
  font-size: 1em;
  text-align: justify;
  max-width: 900px;
  margin: 0 auto 20px auto;
  color: #666666;
}

.page-promo__promo-grid {
  background-color: #f0f0f0;
}

.page-promo__grid-wrapper {
  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: 15px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

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

.page-promo__card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

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

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

.page-promo__card-features {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-promo__card-features li {
  margin-bottom: 8px;
  color: #333333;
  font-size: 0.9em;
  position: relative;
  padding-left: 25px;
}

.page-promo__card-features li::before {
  content: '✓';
  color: #FFD700;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

.page-promo__card-button {
  display: block;
  width: 100%;
  padding: 12px 20px;
  background-color: #FFD700;
  color: #000000;
  text-align: center;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  margin-top: auto; /* Pushes button to the bottom */
}

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

.page-promo__vip-section {
  background-color: #000000;
  color: #ffffff;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-promo__vip-section .page-promo__container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 50px;
}

.page-promo__vip-image {
  flex: 1;
  max-width: 50%;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
  object-fit: cover;
}

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

.page-promo__vip-content .page-promo__section-title {
  color: #FFD700;
  text-align: left;
}

.page-promo__vip-content .page-promo__section-intro,
.page-promo__vip-content .page-promo__section-text {
  color: #f0f0f0;
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.page-promo__how-to-claim {
  text-align: center;
}

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

.page-promo__step-card {
  background-color: #f0f0f0;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.page-promo__step-card:hover {
  transform: translateY(-5px);
}

.page-promo__step-number {
  display: inline-flex;
  width: 50px;
  height: 50px;
  background-color: #FFD700;
  color: #000000;
  border-radius: 50%;
  font-size: 1.8em;
  font-weight: bold;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.page-promo__step-title {
  font-size: 1.5em;
  color: #000000;
  margin-bottom: 15px;
}

.page-promo__step-description {
  font-size: 0.95em;
  color: #666666;
}

.page-promo__final-cta {
  margin-top: 60px;
  padding: 40px;
  background-color: #000000;
  border-radius: 15px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-promo__final-cta-text {
  font-size: 1.5em;
  margin-bottom: 25px;
  color: #FFD700;
}

.page-promo__faq-section {
  background-color: #f8f8f8;
}

.page-promo__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-promo__faq-item {
  background-color: #ffffff;
  border-radius: 10px;
  margin-bottom: 20px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.page-promo__faq-question {
  font-size: 1.2em;
  color: #000000;
  margin-bottom: 10px;
  font-weight: bold;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-promo__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-promo__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

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

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

.page-promo__terms-section a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-promo__terms-section a:hover {
  text-decoration: underline;
}

.page-promo__cta-download-section {
  background-color: #000000;
  color: #ffffff;
  padding: 80px 0;
}

.page-promo__cta-download-section .page-promo__container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 50px;
}

.page-promo__cta-image {
  flex: 1;
  max-width: 50%;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
  object-fit: cover;
}

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

.page-promo__cta-content .page-promo__section-title {
  color: #FFD700;
  text-align: left;
}

.page-promo__cta-content .page-promo__section-intro {
  color: #f0f0f0;
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.page-promo__cta-content .page-promo__cta-button,
.page-promo__cta-content .page-promo__secondary-button {
  margin-left: 0;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-promo__hero-title {
    font-size: 2.8em;
  }
  .page-promo__hero-description {
    font-size: 1.1em;
  }
  .page-promo__section-title {
    font-size: 2em;
  }
  .page-promo__vip-section .page-promo__container,
  .page-promo__cta-download-section .page-promo__container {
    flex-direction: column;
    text-align: center;
  }
  .page-promo__vip-image,
  .page-promo__vip-content,
  .page-promo__cta-image,
  .page-promo__cta-content {
    max-width: 100%;
  }
  .page-promo__vip-content .page-promo__section-title,
  .page-promo__cta-content .page-promo__section-title {
    text-align: center;
  }
  .page-promo__vip-content .page-promo__section-intro,
  .page-promo__vip-content .page-promo__section-text,
  .page-promo__cta-content .page-promo__section-intro {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .page-promo__hero-title {
    font-size: 2.2em;
  }
  .page-promo__hero-description {
    font-size: 1em;
  }
  .page-promo__cta-button,
  .page-promo__secondary-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-promo__section-title {
    font-size: 1.8em;
  }
  .page-promo__promo-grid {
    grid-template-columns: 1fr;
  }
  .page-promo__step-card {
    padding: 25px;
  }
  .page-promo__final-cta-text {
    font-size: 1.2em;
  }
  /* Ensure images in content area do not overflow */
  .page-promo img {
    max-width: 100%;
    height: auto;
  }
  .page-promo__hero-section {
    padding: 60px 0 40px;
  }
  .page-promo__hero-image {
    height: 100%; /* Ensure hero image covers on mobile */
  }
  .page-promo__promo-card {
    margin-bottom: 20px; /* Add space between cards */
  }
  .page-promo__vip-image,
  .page-promo__cta-image {
    height: 300px; /* Fixed height for better mobile presentation */
  }
}

@media (max-width: 480px) {
  .page-promo__hero-title {
    font-size: 1.8em;
  }
  .page-promo__hero-description {
    font-size: 0.9em;
  }
  .page-promo__cta-button,
  .page-promo__secondary-button {
    display: block;
    width: calc(100% - 20px);
    margin-left: 10px;
    margin-right: 10px;
  }
  .page-promo__section-title {
    font-size: 1.5em;
  }
  .page-promo__container {
    padding: 0 15px;
  }
  .page-promo__final-cta {
    padding: 30px 20px;
  }
  .page-promo__faq-item {
    padding: 20px;
  }
}