.page-affiliate-program-how-to-join {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
}

.page-affiliate-program-how-to-join__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-affiliate-program-how-to-join__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #007BFF, #0056b3);
  color: #fff;
  padding: 80px 15px;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 400px;
}

.page-affiliate-program-how-to-join__hero-content {
  z-index: 1;
  max-width: 800px;
}

.page-affiliate-program-how-to-join__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: 700;
  color: #FFD700; /* Auxiliary color for highlight */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-affiliate-program-how-to-join__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 30px;
  max-width: 900px;
  line-height: 1.8;
}

.page-affiliate-program-how-to-join__hero-btn {
  display: inline-block;
  background-color: #FFD700; /* Auxiliary color for button */
  color: #0056b3; /* Darker main color for contrast */
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-affiliate-program-how-to-join__hero-btn:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-affiliate-program-how-to-join__hero-image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
  overflow: hidden;
}

.page-affiliate-program-how-to-join__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-affiliate-program-how-to-join__section {
  padding: 60px 0;
}

.page-affiliate-program-how-to-join__introduction {
  background-color: #fff;
}

.page-affiliate-program-how-to-join__benefits {
  background-color: #e9ecef;
}

.page-affiliate-program-how-to-join__steps {
  background-color: #fff;
}

.page-affiliate-program-how-to-join__eligibility {
  background-color: #f8f9fa;
}

.page-affiliate-program-how-to-join__tips {
  background-color: #e9ecef;
}

.page-affiliate-program-how-to-join__faq {
  background-color: #fff;
}

.page-affiliate-program-how-to-join__cta {
  background: linear-gradient(45deg, #FFD700, #b39700); /* Auxiliary color gradient */
  color: #0056b3; /* Darker main color for contrast */
  text-align: center;
  padding: 80px 15px;
}

.page-affiliate-program-how-to-join__heading {
  font-size: 2.5em;
  color: #007BFF;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
}

.page-affiliate-program-how-to-join__section.page-affiliate-program-how-to-join__cta .page-affiliate-program-how-to-join__heading {
  color: #0056b3; /* Darker main color for CTA heading */
}

.page-affiliate-program-how-to-join__subheading {
  font-size: 1.6em;
  color: #007BFF;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-affiliate-program-how-to-join__text {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #555;
}

.page-affiliate-program-how-to-join__section.page-affiliate-program-how-to-join__cta .page-affiliate-program-how-to-join__text {
  color: #333;
}

.page-affiliate-program-how-to-join__benefits-grid, .page-affiliate-program-how-to-join__tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-affiliate-program-how-to-join__benefit-item, .page-affiliate-program-how-to-join__tip-item {
  background-color: #fff;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-affiliate-program-how-to-join__benefit-item:hover, .page-affiliate-program-how-to-join__tip-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-affiliate-program-how-to-join__benefit-icon, .page-affiliate-program-how-to-join__tip-icon, .page-affiliate-program-how-to-join__cta-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  color: #FFD700; /* Auxiliary color for icons */
}

.page-affiliate-program-how-to-join__step-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-affiliate-program-how-to-join__step-item {
  background-color: #f8f9fa;
  border-left: 5px solid #007BFF;
  padding: 25px 30px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: relative;
}

.page-affiliate-program-how-to-join__step-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.page-affiliate-program-how-to-join__step-number {
  background-color: #007BFF;
  color: #fff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2em;
  margin-right: 15px;
  flex-shrink: 0;
}

.page-affiliate-program-how-to-join__step-item .page-affiliate-program-how-to-join__subheading {
  margin: 0;
  color: #007BFF;
}

.page-affiliate-program-how-to-join__step-btn {
  display: inline-block;
  background-color: #FFD700;
  color: #0056b3;
  padding: 10px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  transition: all 0.3s ease;
  margin-top: 15px;
}

.page-affiliate-program-how-to-join__step-btn:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-affiliate-program-how-to-join__step-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-affiliate-program-how-to-join__list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.page-affiliate-program-how-to-join__list-item {
  background-color: #fff;
  margin-bottom: 10px;
  padding: 15px 20px;
  border-radius: 5px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
  position: relative;
  padding-left: 40px;
}

.page-affiliate-program-how-to-join__list-item::before {
  content: '✓';
  color: #007BFF;
  font-weight: bold;
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2em;
}

.page-affiliate-program-how-to-join__faq-item {
  background-color: #f8f9fa;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-affiliate-program-how-to-join__faq-question {
  font-size: 1.3em;
  color: #007BFF;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-affiliate-program-how-to-join__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.page-affiliate-program-how-to-join__faq-item.active .page-affiliate-program-how-to-join__faq-question::after {
  transform: rotate(45deg);
}

.page-affiliate-program-how-to-join__faq-item .page-affiliate-program-how-to-join__text {
  display: none;
  margin-top: 10px;
  padding-left: 0;
  border-top: 1px solid #eee;
  padding-top: 10px;
  color: #555;
}

.page-affiliate-program-how-to-join__faq-item.active .page-affiliate-program-how-to-join__text {
  display: block;
}

.page-affiliate-program-how-to-join__cta-btn {
  display: inline-block;
  background-color: #007BFF; /* Main color for CTA button */
  color: #fff;
  padding: 18px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  margin-top: 30px;
}

.page-affiliate-program-how-to-join__cta-btn:hover {
  background-color: #0056b3;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-affiliate-program-how-to-join__hero-title {
    font-size: 2.8em;
  }
  .page-affiliate-program-how-to-join__heading {
    font-size: 2em;
  }
  .page-affiliate-program-how-to-join__subheading {
    font-size: 1.4em;
  }
  .page-affiliate-program-how-to-join__text {
    font-size: 1em;
  }
}

@media (max-width: 768px) {
  .page-affiliate-program-how-to-join__hero {
    padding: 60px 15px;
  }
  .page-affiliate-program-how-to-join__hero-title {
    font-size: 2.2em;
  }
  .page-affiliate-program-how-to-join__hero-subtitle {
    font-size: 1.1em;
  }
  .page-affiliate-program-how-to-join__hero-btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-affiliate-program-how-to-join__section {
    padding: 40px 0;
  }
  .page-affiliate-program-how-to-join__heading {
    font-size: 1.8em;
  }
  .page-affiliate-program-how-to-join__benefits-grid, .page-affiliate-program-how-to-join__tips-grid {
    grid-template-columns: 1fr;
  }
  .page-affiliate-program-how-to-join__step-item {
    padding: 20px;
  }
  .page-affiliate-program-how-to-join__step-number {
    width: 35px;
    height: 35px;
    font-size: 1.1em;
  }
  .page-affiliate-program-how-to-join__cta {
    padding: 60px 15px;
  }
  .page-affiliate-program-how-to-join__cta-btn {
    padding: 15px 30px;
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-affiliate-program-how-to-join__hero-title {
    font-size: 1.8em;
  }
  .page-affiliate-program-how-to-join__hero-subtitle {
    font-size: 1em;
  }
  .page-affiliate-program-how-to-join__heading {
    font-size: 1.5em;
  }
  .page-affiliate-program-how-to-join__subheading {
    font-size: 1.2em;
  }
  .page-affiliate-program-how-to-join__text {
    font-size: 0.9em;
  }
  .page-affiliate-program-how-to-join__faq-question {
    font-size: 1.1em;
  }
}