.page-resources-promotions-guide {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark background */
  background-color: var(--dark-bg); /* Ensure body background is respected */
}

.page-resources-promotions-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-resources-promotions-guide__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px 40px;
  min-height: 600px;
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
  background-color: var(--dark-bg);
  color: #ffffff;
  overflow: hidden;
}

.page-resources-promotions-guide__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.page-resources-promotions-guide__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4); /* Darken image for text readability */
}

.page-resources-promotions-guide__hero-content {
  z-index: 10;
  max-width: 900px;
  margin-bottom: 30px;
  position: relative; /* Ensure content is above image */
}

.page-resources-promotions-guide__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FFD700; /* Use auxiliary color for highlight */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-promotions-guide__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-promotions-guide__hero-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-resources-promotions-guide__btn-primary,
.page-resources-promotions-guide__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-resources-promotions-guide__btn-primary {
  background-color: #FFD700;
  color: #CC3333; /* Ensure contrast */
  border: 2px solid #FFD700;
}

.page-resources-promotions-guide__btn-primary:hover {
  background-color: #CC3333;
  color: #FFD700;
  border-color: #FFD700;
}

.page-resources-promotions-guide__btn-secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-resources-promotions-guide__btn-secondary:hover {
  background-color: #FFD700;
  color: #CC3333;
}

.page-resources-promotions-guide__video-section {
  background-color: var(--dark-bg);
  padding: 60px 20px;
  text-align: center;
}

.page-resources-promotions-guide__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 900px;
  margin: 30px auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-resources-promotions-guide__video-link {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.page-resources-promotions-guide__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.page-resources-promotions-guide__content-area {
  padding: 60px 20px;
  background-color: var(--dark-bg); /* Inherit from body or use a dark tone */
  color: #ffffff;
}

.page-resources-promotions-guide__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

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

.page-resources-promotions-guide__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: -20px auto 40px;
  color: #f0f0f0;
}

.page-resources-promotions-guide__text-block {
  font-size: 1.1em;
  margin-bottom: 25px;
  color: #e0e0e0;
  text-align: justify;
}

.page-resources-promotions-guide__sub-title {
  font-size: 1.8em;
  color: #CC3333;
  margin-top: 40px;
  margin-bottom: 20px;
  border-left: 5px solid #FFD700;
  padding-left: 15px;
}

.page-resources-promotions-guide__ordered-list,
.page-resources-promotions-guide__unordered-list {
  list-style-position: inside;
  margin-bottom: 25px;
  padding-left: 0;
}

.page-resources-promotions-guide__ordered-list li,
.page-resources-promotions-guide__unordered-list li {
  font-size: 1.1em;
  margin-bottom: 10px;
  color: #e0e0e0;
  padding-left: 25px;
  position: relative;
}

.page-resources-promotions-guide__ordered-list li strong {
  color: #FFD700;
}

.page-resources-promotions-guide__ordered-list li:before {
  content: counter(list-item) ". ";
  counter-increment: list-item;
  color: #CC3333;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.page-resources-promotions-guide__unordered-list li:before {
  content: "\2022"; /* Bullet point */
  color: #CC3333;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

.page-resources-promotions-guide__content-area a,
.page-resources-promotions-guide__faq-answer a {
  color: #FFD700;
  text-decoration: underline;
}

.page-resources-promotions-guide__content-area a:hover,
.page-resources-promotions-guide__faq-answer a:hover {
  color: #CC3333;
}

.page-resources-promotions-guide__image-full-width {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px 0;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  min-width: 200px; /* Enforce min size */
  min-height: 200px; /* Enforce min size */
}

.page-resources-promotions-guide__image-center {
  display: block;
  margin: 30px auto;
  max-width: 80%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  min-width: 200px; /* Enforce min size */
  min-height: 200px; /* Enforce min size */
}

.page-resources-promotions-guide__cta-buttons--bottom {
  margin-top: 50px;
}

.page-resources-promotions-guide__faq-section {
  background-color: var(--dark-bg);
  padding: 60px 20px;
  color: #ffffff;
}

.page-resources-promotions-guide__faq-list {
  max-width: 900px;
  margin: 40px auto 0;
}

.page-resources-promotions-guide__faq-item {
  background-color: #222222;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-resources-promotions-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  color: #FFD700;
  background-color: #333333;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-resources-promotions-guide__faq-question:hover {
  background-color: #CC3333;
  color: #ffffff;
}

.page-resources-promotions-guide__faq-toggle {
  font-size: 1.5em;
  font-weight: normal;
  transition: transform 0.3s ease;
}

.page-resources-promotions-guide__faq-item.active .page-resources-promotions-guide__faq-toggle {
  transform: rotate(45deg);
}

.page-resources-promotions-guide__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #e0e0e0;
}

.page-resources-promotions-guide__faq-item.active .page-resources-promotions-guide__faq-answer {
  max-height: 1000px !important; /* Ensure it expands */
  padding: 15px 25px 20px !important;
}

.page-resources-promotions-guide__faq-answer p {
  margin: 0;
  color: #e0e0e0;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .page-resources-promotions-guide__hero-section {
    padding: 60px 15px 30px;
    min-height: 450px;
  }

  .page-resources-promotions-guide__hero-title {
    font-size: 2.2em;
  }

  .page-resources-promotions-guide__hero-description {
    font-size: 1em;
  }

  .page-resources-promotions-guide__hero-cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-resources-promotions-guide__btn-primary,
  .page-resources-promotions-guide__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-resources-promotions-guide__video-section {
    padding: 40px 15px;
  }

  .page-resources-promotions-guide__video-wrapper {
    margin: 20px auto;
  }

  .page-resources-promotions-guide__video-link,
  .page-resources-promotions-guide__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-resources-promotions-guide__content-area,
  .page-resources-promotions-guide__faq-section {
    padding: 40px 15px;
  }

  .page-resources-promotions-guide__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-resources-promotions-guide__section-description {
    font-size: 0.95em;
    margin: -10px auto 30px;
  }

  .page-resources-promotions-guide__text-block,
  .page-resources-promotions-guide__ordered-list li,
  .page-resources-promotions-guide__unordered-list li,
  .page-resources-promotions-guide__faq-answer p {
    font-size: 1em;
  }

  .page-resources-promotions-guide__sub-title {
    font-size: 1.5em;
    margin-top: 30px;
  }

  .page-resources-promotions-guide__image-full-width,
  .page-resources-promotions-guide__image-center {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    min-width: 200px !important;
    min-height: 200px !important;
  }

  .page-resources-promotions-guide__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }

  .page-resources-promotions-guide__faq-item.active .page-resources-promotions-guide__faq-answer {
    padding: 10px 20px 15px !important;
  }

  /* Ensure all containers with images/videos/buttons adapt */
  .page-resources-promotions-guide__container,
  .page-resources-promotions-guide__video-wrapper,
  .page-resources-promotions-guide__hero-cta-buttons,
  .page-resources-promotions-guide__cta-buttons--bottom {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
}

/* No filter allowed for images */
.page-resources-promotions-guide img {
  filter: none; /* Explicitly ensure no filter is applied by default */
}

/* Exception for hero image to darken it for text readability, which is acceptable if contrast is maintained. */
.page-resources-promotions-guide__hero-image {
  filter: brightness(0.4); /* Darken image for text readability */
}