.page-promotions {
  background-color: var(--background-color, #08160F); /* Fallback to a dark color if --background-color is not defined */
  color: var(--text-main, #F2FFF6); /* Default light text color for dark background */
  padding-bottom: 50px;
}

.page-promotions__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 20px 40px;
  text-align: center;
  background-color: #0A4B2C; /* Deep Green for hero background */
}

.page-promotions__hero-image-wrapper {
  width: 100%;
  max-width: 1200px;
  margin-bottom: 20px;
}

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

.page-promotions__hero-content {
  max-width: 900px;
  color: #F2FFF6; /* Light text on dark background */
}

.page-promotions__hero-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
  color: #F2FFF6;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions__hero-description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #A7D9B8; /* Secondary light text */
}

.page-promotions__section {
  padding: 50px 20px;
  max-width: 1200px;
  margin: 0 auto;
  background-color: #11271B; /* Card B G for section background */
  border-radius: 12px;
  margin-top: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  color: #F2FFF6; /* Light text on dark background */
}

.page-promotions__section-title {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 30px;
  text-align: center;
  color: #F2C14E; /* Gold for titles */
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-promotions__subsection-title {
  font-size: 1.8rem;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 20px;
  color: #11A84E; /* Main brand color */
  border-bottom: 2px solid #2E7A4E; /* Border color */
  padding-bottom: 10px;
}

.page-promotions__text-content {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #A7D9B8; /* Secondary light text */
}

.page-promotions__text-content p {
  margin-bottom: 15px;
}

.page-promotions__text-content ul {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
}

.page-promotions__text-content li {
  margin-bottom: 10px;
  color: #F2FFF6;
}

.page-promotions__image-wrapper {
  margin: 30px auto;
  text-align: center;
  max-width: 800px;
}

.page-promotions__image {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.page-promotions__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.page-promotions__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button color */
  color: #F2FFF6; /* Light text for button */
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: none;
  cursor: pointer;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
}

.page-promotions__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  opacity: 0.9;
}

.page-promotions__cta-button--large {
  padding: 18px 40px;
  font-size: 1.25rem;
}

.page-promotions__cta-button--secondary {
  background: #2E7A4E; /* Border color for secondary button */
  color: #F2FFF6;
  border: 2px solid #11A84E;
}

/* FAQ Section */
.page-promotions__faq-section {
  padding: 50px 20px;
  max-width: 1000px;
  margin: 0 auto;
  background-color: #0A4B2C; /* Deep Green for FAQ background */
  border-radius: 12px;
  margin-top: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  color: #F2FFF6;
}

.page-promotions__faq-list {
  margin-top: 30px;
}

.page-promotions__faq-item {
  background-color: #11271B; /* Card B G for FAQ item */
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  border: 1px solid #2E7A4E;
}

.page-promotions__faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 25px;
  font-size: 1.15rem;
  font-weight: 600;
  color: #F2C14E; /* Gold for FAQ question */
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #1E3A2A; /* Divider color for summary background */
  transition: background-color 0.3s ease;
}

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

.page-promotions__faq-item summary:hover {
  background-color: #2E7A4E;
}

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

.page-promotions__faq-toggle {
  font-size: 1.5rem;
  font-weight: 700;
  margin-left: 15px;
  color: #57E38D; /* Glow color for toggle */
}

.page-promotions__faq-answer {
  padding: 15px 25px 20px;
  font-size: 1rem;
  line-height: 1.6;
  color: #A7D9B8; /* Secondary light text for answer */
}

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

  .page-promotions__hero-title {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }

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

  .page-promotions__section,
  .page-promotions__faq-section {
    padding: 30px 15px;
    margin-top: 20px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-promotions__section-title {
    font-size: 2rem;
  }

  .page-promotions__subsection-title {
    font-size: 1.5rem;
  }

  .page-promotions__text-content {
    font-size: 0.95rem;
  }

  .page-promotions__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-promotions__cta-button {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1rem;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  
  .page-promotions__cta-button--large {
    padding: 15px 25px;
    font-size: 1.1rem;
  }

  .page-promotions__faq-item summary {
    font-size: 1rem;
    padding: 15px 20px;
  }

  .page-promotions__faq-toggle {
    font-size: 1.3rem;
  }

  .page-promotions__faq-answer {
    padding: 10px 20px 15px;
    font-size: 0.9rem;
  }

  /* Image responsive rules */
  .page-promotions img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  /* No video elements are used on this page, so video-specific responsive rules are not needed */
  /* However, including the generic container rules for safety if shared.css has them */
  .page-promotions__video-section,
  .page-promotions__video-container,
  .page-promotions__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-promotions__video-section {
    padding-top: 10px !important;
  }
}