.page-promotions {
  color: #333333; /* Dark text for default light body background */
}

.page-promotions__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  text-align: center;
  background-color: #f8f8f8; /* Light background for hero section */
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
}

.page-promotions__hero-image-wrapper {
  width: 100%;
  max-width: 1200px; /* Constrain image width */
  margin-top: 30px;
  overflow: hidden; /* Ensure image doesn't overflow */
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.page-promotions__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-promotions__hero-content {
  max-width: 900px;
  margin: 0 auto;
  z-index: 1;
}

.page-promotions__hero-title {
  font-size: 3.2em;
  color: #8B0000; /* Auxiliary color for main title */
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.page-promotions__hero-description {
  font-size: 1.2em;
  color: #555555;
  margin-bottom: 30px;
  line-height: 1.6;
}

.page-promotions__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Main color for CTA button */
  color: #8B0000; /* Auxiliary color for text */
  padding: 15px 40px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: 700;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
  border: none;
  cursor: pointer;
}

.page-promotions__cta-button:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.6);
}

.page-promotions__section-title {
  font-size: 2.5em;
  color: #8B0000; /* Auxiliary color for section titles */
  text-align: center;
  margin-top: 60px;
  margin-bottom: 20px;
  font-weight: 700;
}

.page-promotions__section-subtitle {
  font-size: 1.1em;
  color: #666666;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
  line-height: 1.6;
}

.page-promotions__current-offers-section,
.page-promotions__how-to-claim-section,
.page-promotions__terms-section,
.page-promotions__faq-section,
.page-promotions__final-cta-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

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

.page-promotions__offer-card {
  background-color: #ffffff;
  border-radius: 15px;
  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-promotions__offer-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.page-promotions__offer-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}

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

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

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

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

.page-promotions__card-features li {
  font-size: 0.95em;
  color: #444444;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}

.page-promotions__card-features li i {
  color: #FFD700;
  margin-right: 10px;
  font-size: 1.1em;
}

.page-promotions__card-button {
  display: inline-block;
  background-color: #FFD700;
  color: #8B0000;
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 1em;
  font-weight: 600;
  text-align: center;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin-top: auto; /* Push button to bottom */
}

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

.page-promotions__vip-teaser-section {
  background-color: #8B0000; /* Auxiliary color as background */
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 60px;
  border-radius: 15px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__vip-content {
  max-width: 800px;
  margin: 0 auto;
}

.page-promotions__vip-title {
  font-size: 2.8em;
  color: #FFD700; /* Main color for VIP title */
  margin-bottom: 20px;
  font-weight: 700;
}

.page-promotions__vip-description {
  font-size: 1.15em;
  line-height: 1.7;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-promotions__vip-button {
  display: inline-block;
  background-color: #FFD700;
  color: #8B0000;
  padding: 15px 40px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: 700;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

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

.page-promotions__vip-image-wrapper {
  max-width: 600px;
  width: 100%;
  margin-top: 40px;
}

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

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

.page-promotions__step-card {
  background-color: #ffffff;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-promotions__step-icon {
  font-size: 2.5em;
  font-weight: 700;
  color: #FFD700; /* Main color for step numbers */
  background-color: #8B0000; /* Auxiliary color for background */
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  box-shadow: 0 5px 15px rgba(139, 0, 0, 0.4);
}

.page-promotions__step-title {
  font-size: 1.5em;
  color: #8B0000;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-promotions__step-description {
  font-size: 0.95em;
  color: #666666;
  line-height: 1.6;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-promotions__step-button {
  display: inline-block;
  background-color: #FFD700;
  color: #8B0000;
  padding: 10px 20px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 0.9em;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

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

.page-promotions__terms-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  background-color: #f9f9f9;
  border-left: 5px solid #FFD700;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-promotions__terms-list li {
  font-size: 1em;
  color: #444444;
  margin-bottom: 15px;
  line-height: 1.6;
  position: relative;
  padding-left: 25px;
}

.page-promotions__terms-list li::before {
  content: '•';
  color: #8B0000;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
  position: absolute;
  left: 0;
  top: 0;
}

.page-promotions__terms-link {
  display: inline-block;
  color: #8B0000;
  text-decoration: none;
  font-weight: 600;
  margin-top: 20px;
  margin-right: 20px;
  transition: color 0.3s ease;
}

.page-promotions__terms-link:hover {
  color: #FFD700;
  text-decoration: underline;
}

.page-promotions__faq-container {
  margin-top: 40px;
}

.page-promotions__faq-item {
  background-color: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 10px;
  margin-bottom: 20px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.page-promotions__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-promotions__faq-item.active .page-promotions__faq-question::after {
  content: '-';
  transform: translateY(-50%) rotate(0deg); /* No rotation for minus */
}

.page-promotions__faq-answer {
  font-size: 1em;
  color: #555555;
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, opacity 0.5s ease-out;
  opacity: 0;
  padding-top: 0;
}

.page-promotions__faq-item.active .page-promotions__faq-answer {
  max-height: 200px; /* Adjust based on expected content length */
  opacity: 1;
  padding-top: 15px;
}

.page-promotions__faq-support-link {
  display: inline-block;
  color: #8B0000;
  text-decoration: none;
  font-weight: 600;
  margin-top: 10px;
  transition: color 0.3s ease;
}

.page-promotions__faq-support-link:hover {
  color: #FFD700;
  text-decoration: underline;
}

.page-promotions__final-cta-section {
  text-align: center;
  background-color: #f8f8f8;
  padding: 60px 20px;
  border-radius: 15px;
  margin-top: 60px;
  margin-bottom: 60px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-promotions__cta-button--large {
  padding: 18px 50px;
  font-size: 1.4em;
  border-radius: 35px;
}

@media (max-width: 1024px) {
  .page-promotions__hero-title {
    font-size: 2.8em;
  }
  .page-promotions__section-title {
    font-size: 2.2em;
  }
  .page-promotions__vip-title {
    font-size: 2.4em;
  }
  .page-promotions__vip-teaser-section {
    flex-direction: column;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .page-promotions__hero-section {
    padding: 40px 15px;
  }
  .page-promotions__hero-title {
    font-size: 2.2em;
  }
  .page-promotions__hero-description {
    font-size: 1em;
  }
  .page-promotions__cta-button {
    padding: 12px 30px;
    font-size: 1em;
  }
  .page-promotions__section-title {
    font-size: 1.8em;
  }
  .page-promotions__section-subtitle {
    font-size: 0.9em;
    margin-bottom: 30px;
  }
  .page-promotions__current-offers-section,
  .page-promotions__how-to-claim-section,
  .page-promotions__terms-section,
  .page-promotions__faq-section,
  .page-promotions__final-cta-section {
    padding: 30px 15px;
  }
  .page-promotions__offers-grid,
  .page-promotions__steps-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .page-promotions__offer-card {
    margin-bottom: 20px;
  }
  .page-promotions__card-title {
    font-size: 1.5em;
  }
  .page-promotions__vip-title {
    font-size: 2em;
  }
  .page-promotions__vip-description {
    font-size: 1em;
  }
  .page-promotions__vip-button {
    padding: 12px 30px;
    font-size: 1em;
  }
  .page-promotions__step-icon {
    width: 60px;
    height: 60px;
    font-size: 2em;
  }
  .page-promotions__step-title {
    font-size: 1.3em;
  }
  .page-promotions__terms-list li {
    font-size: 0.9em;
  }
  .page-promotions__faq-question {
    font-size: 1.1em;
  }
  .page-promotions__faq-answer {
    font-size: 0.9em;
  }
  .page-promotions__cta-button--large {
    padding: 15px 40px;
    font-size: 1.2em;
  }
  /* Mobile image scaling to prevent overflow */
  .page-promotions img {
    max-width: 100%;
    height: auto;
  }
}