.page-affiliate-program-faq {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text for good contrast with dark background */
  background-color: #0A2463; /* Main dark blue background */
}

.page-affiliate-program-faq__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-affiliate-program-faq__hero-section {
  background: linear-gradient(135deg, #0A2463 0%, #1A3E7A 100%); /* Dark blue gradient */
  padding: 80px 0;
  text-align: center;
  color: #FFD700; /* Gold for hero titles for strong contrast */
}

.page-affiliate-program-faq__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FFD700; /* Gold for main title */
}

.page-affiliate-program-faq__hero-subtitle {
  font-size: 1.2em;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: #E0E0E0; /* Light gray for subtitle */
}

.page-affiliate-program-faq__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold for CTA button */
  color: #0A2463; /* Dark blue for button text */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-affiliate-program-faq__cta-button:hover {
  background-color: #E6C200; /* Slightly darker gold on hover */
  transform: translateY(-2px);
}

.page-affiliate-program-faq__cta-button--bottom {
  margin-top: 40px;
}

.page-affiliate-program-faq__content-section {
  padding: 60px 0;
}

.page-affiliate-program-faq__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  text-align: center;
  margin-bottom: 40px;
  padding-top: 20px;
}

.page-affiliate-program-faq__sub-section-title {
  font-size: 1.8em;
  color: #E0E0E0; /* Light gray for sub-section titles */
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 2px solid #1A3E7A;
  padding-bottom: 10px;
}

.page-affiliate-program-faq__text-content {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #E0E0E0; /* Light gray for text content */
}

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

.page-affiliate-program-faq__text-content li {
  margin-bottom: 10px;
  color: #E0E0E0; /* Light gray for list items */
}

.page-affiliate-program-faq__inline-link {
  color: #FFD700; /* Gold for inline links */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-affiliate-program-faq__inline-link:hover {
  color: #E6C200; /* Darker gold on hover */
  text-decoration: underline;
}

.page-affiliate-program-faq__accordion {
  margin-top: 30px;
  margin-bottom: 50px;
}

.page-affiliate-program-faq__accordion-item {
  background-color: #1A3E7A; /* Slightly lighter dark blue for accordion items */
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-affiliate-program-faq__accordion-header {
  background-color: #FFD700; /* Gold for accordion headers */
  color: #0A2463; /* Dark blue for header text */
  padding: 18px 25px;
  width: 100%;
  text-align: left;
  border: none;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-affiliate-program-faq__accordion-header:hover {
  background-color: #E6C200; /* Darker gold on hover */
}

.page-affiliate-program-faq__accordion-header::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-affiliate-program-faq__accordion-header.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-affiliate-program-faq__accordion-content {
  padding: 0 25px;
  background-color: #0A2463; /* Main dark blue for content background */
  color: #E0E0E0; /* Light gray for content text */
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-affiliate-program-faq__accordion-content.active {
  max-height: 500px; /* Adjust based on expected content length */
  padding: 20px 25px;
}

.page-affiliate-program-faq__accordion-content p {
  margin-bottom: 15px;
}

.page-affiliate-program-faq__accordion-content ul {
  list-style-type: disc;
  margin-left: 25px;
  padding-bottom: 10px;
}

.page-affiliate-program-faq__image-wrapper {
  text-align: center;
  margin: 40px 0;
}

.page-affiliate-program-faq__content-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-affiliate-program-faq__button-wrapper {
  text-align: center;
  margin-top: 50px;
  margin-bottom: 30px;
}

/* Responsive design */
@media (max-width: 768px) {
  .page-affiliate-program-faq__hero-title {
    font-size: 2.5em;
  }

  .page-affiliate-program-faq__hero-subtitle,
  .page-affiliate-program-faq__text-content {
    font-size: 1em;
  }

  .page-affiliate-program-faq__section-title {
    font-size: 2em;
  }

  .page-affiliate-program-faq__sub-section-title {
    font-size: 1.5em;
  }

  .page-affiliate-program-faq__accordion-header {
    font-size: 1.1em;
    padding: 15px 20px;
  }

  .page-affiliate-program-faq__accordion-content {
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-affiliate-program-faq__hero-title {
    font-size: 2em;
  }

  .page-affiliate-program-faq__hero-section {
    padding: 60px 0;
  }

  .page-affiliate-program-faq__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-affiliate-program-faq__section-title {
    font-size: 1.8em;
  }

  .page-affiliate-program-faq__sub-section-title {
    font-size: 1.3em;
  }

  .page-affiliate-program-faq__accordion-header {
    font-size: 1em;
    padding: 12px 15px;
  }

  .page-affiliate-program-faq__accordion-content {
    padding: 12px 15px;
  }
}