.page-promotions {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light backgrounds */
  background-color: #08160F; /* Overall background */
}

.page-promotions__dark-bg {
  background-color: #08160F;
  color: #F2FFF6; /* Text Main */
}

.page-promotions__light-bg {
  background-color: #ffffff; /* White background for contrast */
  color: #333333;
}

.page-promotions__text-main {
  color: #F2FFF6;
}

.page-promotions__text-secondary {
  color: #A7D9B8;
}

.page-promotions__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  overflow: hidden;
}

.page-promotions__hero-image-wrapper {
  width: 100%;
  max-width: 1920px; /* Max width of the hero image */
  margin-bottom: 30px;
}

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

.page-promotions__hero-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative; /* Ensure content is above any potential background elements */
  z-index: 2;
}

.page-promotions__main-title {
  font-size: clamp(2.2em, 4vw, 3.5em);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #F2FFF6;
  letter-spacing: 1px;
}

.page-promotions__hero-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #A7D9B8;
}

.page-promotions__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1em;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-promotions__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

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

.page-promotions__btn-secondary:hover {
  background-color: #2AD16F;
  color: #ffffff;
  transform: translateY(-3px);
}

.page-promotions__section-title {
  font-size: clamp(1.8em, 3.5vw, 2.8em);
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-promotions__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #2AD16F;
  border-radius: 2px;
}

.page-promotions__overview-section,
.page-promotions__promo-category,
.page-promotions__how-to-claim,
.page-promotions__terms-conditions,
.page-promotions__why-choose,
.page-promotions__faq-section,
.page-promotions__final-cta {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.page-promotions__text-block {
  font-size: 1.05em;
  margin-bottom: 30px;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__image-container {
  width: 100%;
  max-width: 1000px;
  margin: 40px auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-promotions__content-image {
  width: 100%;
  height: auto;
  display: block;
}

.page-promotions__card-section {
  padding-top: 40px;
}

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

.page-promotions__promo-card {
  background-color: #11271B; /* Card BG */
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid #2E7A4E; /* Border */
}

.page-promotions__light-card {
  background-color: #ffffff;
  color: #333333;
  border: 1px solid #e0e0e0;
}

.page-promotions__light-card .page-promotions__card-title {
  color: #333333;
}

.page-promotions__light-card .page-promotions__card-description,
.page-promotions__light-card .page-promotions__card-features {
  color: #666666;
}

.page-promotions__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
  display: block;
}

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

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

.page-promotions__card-features {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
  text-align: left;
  color: #A7D9B8;
}

.page-promotions__card-features li {
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
}

.page-promotions__icon {
  margin-right: 10px;
  font-size: 1.1em;
  color: #2AD16F;
}

.page-promotions__icon--check::before {
  content: '✓';
}

.page-promotions__icon--star::before {
  content: '⭐';
}

.page-promotions__icon--info::before {
  content: 'ⓘ';
}

.page-promotions__icon--number1::before {
  content: '1.';
}
.page-promotions__icon--number2::before {
  content: '2.';
}
.page-promotions__icon--number3::before {
  content: '3.';
}
.page-promotions__icon--number4::before {
  content: '4.';
}

.page-promotions__vip-benefits {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 40px auto;
  text-align: left;
  color: #A7D9B8;
}

.page-promotions__vip-benefits li {
  margin-bottom: 15px;
  font-size: 1.1em;
  display: flex;
  align-items: flex-start;
}

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

.page-promotions__steps-list li {
  margin-bottom: 25px;
  font-size: 1.1em;
  display: flex;
  align-items: flex-start;
}

.page-promotions__steps-list li strong {
  color: #F2FFF6;
}

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

.page-promotions__terms-list li {
  margin-bottom: 15px;
  font-size: 1em;
  color: #666666;
  display: flex;
  align-items: flex-start;
}

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

.page-promotions__feature-item {
  text-align: center;
  padding: 25px;
  background-color: #11271B;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #2E7A4E;
}

.page-promotions__feature-item .page-promotions__icon {
  font-size: 3em;
  margin-bottom: 15px;
  color: #57E38D; /* Glow color */
}

.page-promotions__feature-title {
  font-size: 1.3em;
  font-weight: 600;
  margin-bottom: 10px;
  color: #F2FFF6;
}

.page-promotions__feature-description {
  font-size: 0.95em;
  color: #A7D9B8;
}

.page-promotions__video-section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  box-sizing: border-box;
}

.page-promotions__video-container {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 40px auto;
  background-color: #000;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  box-sizing: border-box;
}

.page-promotions__video {
  width: 100%;
  height: auto;
  display: block;
  cursor: pointer;
}

.page-promotions__video-cta {
  margin-top: 30px;
}

.page-promotions__faq-list {
  max-width: 900px;
  margin: 40px auto;
}

.page-promotions__faq-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.1em;
  font-weight: 600;
  cursor: pointer;
  color: #333333;
  background-color: #f9f9f9;
  border-bottom: 1px solid #e0e0e0;
  list-style: none;
}

.page-promotions__faq-question::-webkit-details-marker {
  display: none;
}

.page-promotions__faq-qtext {
  flex-grow: 1;
}

.page-promotions__faq-toggle {
  font-size: 1.5em;
  margin-left: 15px;
  color: #2AD16F;
  transition: transform 0.3s ease;
}

.page-promotions__faq-item[open] .page-promotions__faq-toggle {
  transform: rotate(45deg);
}

.page-promotions__faq-answer {
  padding: 20px;
  font-size: 1em;
  color: #555555;
  background-color: #ffffff;
  border-top: none;
}

.page-promotions__final-cta {
  text-align: center;
  padding: 100px 20px;
}

.page-promotions__final-cta .page-promotions__section-title {
  margin-bottom: 30px;
}

.page-promotions__final-cta .page-promotions__text-block {
  margin-bottom: 40px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .page-promotions__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important;
  }

  .page-promotions__main-title {
    font-size: clamp(1.8em, 7vw, 2.5em);
  }

  .page-promotions__hero-description {
    font-size: 1em;
  }

  .page-promotions__cta-button {
    max-width: 100% !important;
    width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
  }

  .page-promotions__section-title {
    font-size: clamp(1.5em, 6vw, 2em);
    margin-bottom: 30px;
  }

  .page-promotions__overview-section,
  .page-promotions__promo-category,
  .page-promotions__how-to-claim,
  .page-promotions__terms-conditions,
  .page-promotions__why-choose,
  .page-promotions__faq-section,
  .page-promotions__final-cta {
    padding: 50px 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-promotions__text-block {
    font-size: 0.95em;
  }

  .page-promotions__promo-card-wrapper {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-promotions__promo-card {
    padding: 20px;
  }

  .page-promotions__card-image {
    height: 180px;
  }

  .page-promotions__card-title {
    font-size: 1.3em;
  }

  .page-promotions__vip-benefits,
  .page-promotions__steps-list,
  .page-promotions__terms-list {
    margin: 30px auto;
    padding: 0 10px;
  }

  .page-promotions__vip-benefits li,
  .page-promotions__steps-list li,
  .page-promotions__terms-list li {
    font-size: 0.95em;
    margin-bottom: 10px;
  }

  .page-promotions__features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-promotions__feature-item {
    padding: 20px;
  }

  .page-promotions__video-section {
    padding: 50px 15px;
    padding-top: 10px !important;
  }

  .page-promotions__video-container {
    margin: 30px auto;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-promotions__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-promotions__video-cta {
    margin-top: 20px;
  }

  .page-promotions__faq-item {
    margin-bottom: 10px;
  }

  .page-promotions__faq-question {
    padding: 15px;
    font-size: 1em;
  }

  .page-promotions__faq-answer {
    padding: 15px;
    font-size: 0.95em;
  }

  .page-promotions__final-cta {
    padding: 60px 15px;
  }

  /* Ensure all images are responsive */
  .page-promotions img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-promotions__image-container,
  .page-promotions__promo-card-wrapper,
  .page-promotions__promo-card,
  .page-promotions__features-grid,
  .page-promotions__feature-item,
  .page-promotions__faq-list,
  .page-promotions__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
  }

  .page-promotions__hero-image-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
}

/* Custom scrollbar for dark backgrounds */
.page-promotions::-webkit-scrollbar {
  width: 10px;
}

.page-promotions::-webkit-scrollbar-track {
  background: #0A4B2C; /* Deep Green */
}

.page-promotions::-webkit-scrollbar-thumb {
  background: #2AD16F;
  border-radius: 5px;
}

.page-promotions::-webkit-scrollbar-thumb:hover {
  background: #13994A;
}