.page-affiliate-program-faq {
  font-family: 'Arial', sans-serif;
  color: #333333;
  line-height: 1.6;
}

.page-affiliate-program-faq__hero-section {
  background: linear-gradient(135deg, #007BFF, #0056b3);
  color: #FFFFFF;
  padding: 100px 20px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  position: relative;
  overflow: hidden;
}

.page-affiliate-program-faq__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('[GALLERY:bg:abstract,geometric,blue,gold,pattern]');
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: 0;
}

.page-affiliate-program-faq__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.page-affiliate-program-faq__hero-title {
  font-size: 2.8em;
  margin-bottom: 15px;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-affiliate-program-faq__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #FFFFFF;
}

.page-affiliate-program-faq__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #0056b3;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid #FFD700;
}

.page-affiliate-program-faq__cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
  color: #003a7a;
}

.page-affiliate-program-faq__cta-button--small {
  padding: 10px 20px;
  font-size: 1em;
}

.page-affiliate-program-faq__content-area {
  max-width: 1000px;
  margin: 40px auto;
  padding: 20px;
}

.page-affiliate-program-faq__faq-list {
  margin-bottom: 60px;
}

.page-affiliate-program-faq__faq-item {
  background-color: #FFFFFF;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 20px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-affiliate-program-faq__faq-question {
  background-color: #f8f8f8;
  color: #007BFF;
  padding: 20px 25px;
  margin: 0;
  font-size: 1.3em;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
  border-bottom: 1px solid #e0e0e0;
}

.page-affiliate-program-faq__faq-question:hover {
  background-color: #eaf5ff;
}

.page-affiliate-program-faq__faq-question::after {
  content: '+';
  font-size: 1.5em;
  font-weight: bold;
  transition: transform 0.3s ease;
}

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

.page-affiliate-program-faq__faq-answer {
  padding: 0 25px;
  background-color: #FFFFFF;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-affiliate-program-faq__faq-answer.active {
  max-height: 1000px; /* Adjust as needed for content length */
  padding: 20px 25px;
}

.page-affiliate-program-faq__faq-answer p {
  margin-bottom: 15px;
  color: #444444;
}

.page-affiliate-program-faq__faq-answer ul,
.page-affiliate-program-faq__faq-answer ol {
  margin-left: 25px;
  margin-bottom: 15px;
  color: #444444;
}

.page-affiliate-program-faq__faq-answer li {
  margin-bottom: 8px;
}

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

.page-affiliate-program-faq__image--full-width {
  width: 100%;
}

.page-affiliate-program-faq__call-to-action {
  background-color: #007BFF;
  color: #FFFFFF;
  padding: 60px 40px;
  text-align: center;
  border-radius: 12px;
  margin-top: 40px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-affiliate-program-faq__cta-title {
  font-size: 2.2em;
  margin-bottom: 20px;
  color: #FFD700;
}

.page-affiliate-program-faq__cta-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

  .page-affiliate-program-faq__hero-subtitle {
    font-size: 1.1em;
  }

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

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

  .page-affiliate-program-faq__faq-answer.active {
    padding: 15px 20px;
  }

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

  .page-affiliate-program-faq__cta-description {
    font-size: 1em;
  }
}

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

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

  .page-affiliate-program-faq__hero-section {
    padding: 80px 15px;
  }

  .page-affiliate-program-faq__content-area {
    padding: 15px;
    margin: 20px auto;
  }

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

  .page-affiliate-program-faq__faq-answer.active {
    padding: 12px 15px;
  }

  .page-affiliate-program-faq__call-to-action {
    padding: 40px 20px;
  }

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