.page-affiliate-program-how-to-join {
  color: #333333; /* Dark text for light body background */
}

.page-affiliate-program-how-to-join__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  padding-top: var(--header-offset, 120px); /* Desktop padding */
}

.page-affiliate-program-how-to-join__hero-container {
  position: relative;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}

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

.page-affiliate-program-how-to-join__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #FFFFFF;
  padding: 20px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 10px;
  max-width: 80%;
}

.page-affiliate-program-how-to-join__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFFFFF;
  line-height: 1.2;
}

.page-affiliate-program-how-to-join__hero-description {
  font-size: 1.5em;
  margin-bottom: 30px;
  color: #F0F0F0;
}

.page-affiliate-program-how-to-join__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-affiliate-program-how-to-join__cta-button--primary {
  background-color: #FCBC45; /* Login color for primary CTA */
  color: #000000;
}

.page-affiliate-program-how-to-join__cta-button--primary:hover {
  background-color: #E0A73B;
}

.page-affiliate-program-how-to-join__cta-button--secondary {
  background-color: #000000;
  color: #FFFFFF;
  border: 2px solid #FCBC45;
}

.page-affiliate-program-how-to-join__cta-button--secondary:hover {
  background-color: #222222;
  border-color: #E0A73B;
}

.page-affiliate-program-how-to-join__cta-button--tertiary {
  background-color: #FFFFFF;
  color: #000000;
  border: 2px solid #000000;
}

.page-affiliate-program-how-to-join__cta-button--tertiary:hover {
  background-color: #F0F0F0;
}

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

.page-affiliate-program-how-to-join__section-title {
  font-size: 2.8em;
  color: #000000;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 10px;
}

.page-affiliate-program-how-to-join__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FCBC45;
  border-radius: 2px;
}

.page-affiliate-program-how-to-join__text-content {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
}

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

.page-affiliate-program-how-to-join__step-card,
.page-affiliate-program-how-to-join__benefit-card {
  background-color: #F8F8F8;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-affiliate-program-how-to-join__step-card:hover,
.page-affiliate-program-how-to-join__benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-affiliate-program-how-to-join__step-title,
.page-affiliate-program-how-to-join__benefit-title {
  font-size: 1.6em;
  color: #000000;
  margin-bottom: 15px;
}

.page-affiliate-program-how-to-join__step-description,
.page-affiliate-program-how-to-join__benefit-description {
  font-size: 1em;
  line-height: 1.6;
  color: #555555;
}

.page-affiliate-program-how-to-join__steps-image,
.page-affiliate-program-how-to-join__benefits-image,
.page-affiliate-program-how-to-join__support-image,
.page-affiliate-program-how-to-join__final-cta-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  min-height: 200px;
}

.page-affiliate-program-how-to-join__cta-area {
  text-align: center;
  margin-top: 50px;
  margin-bottom: 50px;
}

.page-affiliate-program-how-to-join__commission-table {
  margin-top: 50px;
  margin-bottom: 50px;
  overflow-x: auto;
}

.page-affiliate-program-how-to-join__table-title {
  font-size: 2em;
  color: #000000;
  text-align: center;
  margin-bottom: 20px;
}

.page-affiliate-program-how-to-join__commission-table table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  background-color: #FFFFFF;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  overflow: hidden;
}

.page-affiliate-program-how-to-join__commission-table th,
.page-affiliate-program-how-to-join__commission-table td {
  padding: 15px;
  text-align: center;
  border-bottom: 1px solid #EEEEEE;
}

.page-affiliate-program-how-to-join__commission-table th {
  background-color: #000000;
  color: #FFFFFF;
  font-weight: bold;
  font-size: 1.1em;
}

.page-affiliate-program-how-to-join__commission-table tbody tr:nth-child(even) {
  background-color: #FDFDFD;
}

.page-affiliate-program-how-to-join__commission-table tbody tr:hover {
  background-color: #FAFAFA;
}

.page-affiliate-program-how-to-join__table-note {
  font-size: 0.9em;
  color: #777777;
  text-align: center;
  margin-top: 20px;
}

.page-affiliate-program-how-to-join__faq-accordion {
  margin-top: 40px;
}

.page-affiliate-program-how-to-join__faq-item {
  border: 1px solid #EEEEEE;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-affiliate-program-how-to-join__faq-question {
  width: 100%;
  background-color: #000000;
  color: #FFFFFF;
  padding: 18px 25px;
  text-align: left;
  font-size: 1.2em;
  font-weight: bold;
  border: none;
  cursor: pointer;
  outline: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.page-affiliate-program-how-to-join__faq-question::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

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

.page-affiliate-program-how-to-join__faq-question:hover {
  background-color: #222222;
}

.page-affiliate-program-how-to-join__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-how-to-join__faq-answer p {
  padding: 15px 0;
  margin: 0;
  color: #333333;
  line-height: 1.7;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-affiliate-program-how-to-join__hero-title {
    font-size: 2.8em;
  }

  .page-affiliate-program-how-to-join__hero-description {
    font-size: 1.3em;
  }

  .page-affiliate-program-how-to-join__section-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-affiliate-program-how-to-join__hero-section {
    min-height: 400px;
    padding-top: var(--header-offset, 120px);
  }

  .page-affiliate-program-how-to-join__hero-content {
    max-width: 90%;
    padding: 15px;
  }

  .page-affiliate-program-how-to-join__hero-title {
    font-size: 2em;
    margin-bottom: 15px;
  }

  .page-affiliate-program-how-to-join__hero-description {
    font-size: 1.1em;
    margin-bottom: 20px;
  }

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

  .page-affiliate-program-how-to-join__container {
    padding: 30px 15px;
  }

  .page-affiliate-program-how-to-join__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-affiliate-program-how-to-join__text-content {
    font-size: 1em;
  }

  .page-affiliate-program-how-to-join__steps-grid,
  .page-affiliate-program-how-to-join__benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-affiliate-program-how-to-join__step-card,
  .page-affiliate-program-how-to-join__benefit-card {
    padding: 20px;
  }

  .page-affiliate-program-how-to-join__step-title,
  .page-affiliate-program-how-to-join__benefit-title {
    font-size: 1.4em;
  }

  .page-affiliate-program-how-to-join__commission-table th,
  .page-affiliate-program-how-to-join__commission-table td {
    padding: 10px;
    font-size: 0.9em;
  }

  .page-affiliate-program-how-to-join__faq-question {
    font-size: 1em;
    padding: 15px 20px;
  }

  /* Ensure content images do not overflow */
  .page-affiliate-program-how-to-join img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-affiliate-program-how-to-join__hero-title {
    font-size: 1.6em;
  }

  .page-affiliate-program-how-to-join__hero-description {
    font-size: 0.9em;
  }

  .page-affiliate-program-how-to-join__cta-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }

  .page-affiliate-program-how-to-join__section-title {
    font-size: 1.6em;
  }
}