/* style/affiliate-program.css */
.page-affiliate-program {
  color: #333333; /* Default text color for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px);
}

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

.page-affiliate-program__hero-section {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  text-align: center;
  padding-bottom: 60px; /* Adjust as needed */
}

.page-affiliate-program__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  filter: brightness(0.6); /* Darken image for text readability */
}

.page-affiliate-program__hero-container {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 500px; /* Ensures content area has height */
  padding: 80px 20px;
}

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

.page-affiliate-program__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700;
  line-height: 1.2;
}

.page-affiliate-program__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #f0f0f0;
}

.page-affiliate-program__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #1A2E44;
  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__cta-button:hover {
  background-color: #e5c100;
  color: #0d1e2e;
}

.page-affiliate-program__section-title {
  font-size: 2.5em;
  color: #1A2E44;
  text-align: center;
  margin-top: 60px;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 10px;
}

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

.page-affiliate-program__section-intro {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #555555;
}

.page-affiliate-program__section-outro {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 40px auto 0 auto;
  color: #555555;
}

.page-affiliate-program__benefits-grid,
.page-affiliate-program__steps-grid,
.page-affiliate-program__tools-grid,
.page-affiliate-program__products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.page-affiliate-program__benefit-card,
.page-affiliate-program__step-card,
.page-affiliate-program__tool-item,
.page-affiliate-program__product-card {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-affiliate-program__benefit-card:hover,
.page-affiliate-program__step-card:hover,
.page-affiliate-program__tool-item:hover,
.page-affiliate-program__product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-affiliate-program__benefit-icon img {
  width: 250px; /* Minimum 200px */
   /* Maintain aspect ratio */
  margin-bottom: 20px;
  border-radius: 5px;
  object-fit: cover;
}

.page-affiliate-program__step-number {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #1A2E44;
  color: #FFD700;
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 20px;
}

.page-affiliate-program__card-title {
  font-size: 1.6em;
  color: #1A2E44;
  margin-bottom: 15px;
}

.page-affiliate-program__card-title a {
  color: #1A2E44;
  text-decoration: none;
}

.page-affiliate-program__card-title a:hover {
  color: #FFD700;
}

.page-affiliate-program__card-description {
  font-size: 1em;
  color: #666666;
}

.page-affiliate-program__cta-center {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 60px;
}

.page-affiliate-program__commission-details {
  background-color: #f9f9f9;
  border-left: 5px solid #FFD700;
  padding: 30px;
  margin-bottom: 60px;
  border-radius: 5px;
}

.page-affiliate-program__commission-details p {
  margin-bottom: 15px;
  font-size: 1.05em;
  color: #444444;
}

.page-affiliate-program__faq-section {
  background-color: #f0f0f0;
  padding: 60px 0;
}

.page-affiliate-program__faq-item {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.page-affiliate-program__faq-question {
  font-size: 1.3em;
  color: #1A2E44;
  margin-bottom: 10px;
}

.page-affiliate-program__faq-answer {
  font-size: 1em;
  color: #555555;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-affiliate-program__hero-title {
    font-size: 3em;
  }
  .page-affiliate-program__hero-description {
    font-size: 1.2em;
  }
  .page-affiliate-program__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-affiliate-program__hero-title {
    font-size: 2.2em;
  }
  .page-affiliate-program__hero-description {
    font-size: 1em;
  }
  .page-affiliate-program__hero-container {
    min-height: 400px;
    padding: 60px 15px;
  }
  .page-affiliate-program__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-affiliate-program__section-title {
    font-size: 1.8em;
    margin-top: 40px;
    margin-bottom: 20px;
  }
  .page-affiliate-program__section-intro,
  .page-affiliate-program__section-outro {
    font-size: 0.95em;
    margin-bottom: 30px;
  }
  .page-affiliate-program__benefits-grid,
  .page-affiliate-program__steps-grid,
  .page-affiliate-program__tools-grid,
  .page-affiliate-program__products-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
  }
  .page-affiliate-program__benefit-card,
  .page-affiliate-program__step-card,
  .page-affiliate-program__tool-item,
  .page-affiliate-program__product-card {
    padding: 20px;
  }
  .page-affiliate-program__benefit-icon img {
    width: 250px; /* Ensures minimum 200px display width */
    height: auto;
  }
  .page-affiliate-program__card-title {
    font-size: 1.4em;
  }
  .page-affiliate-program__card-description {
    font-size: 0.95em;
  }
  .page-affiliate-program__commission-details,
  .page-affiliate-program__faq-item {
    padding: 20px;
  }
  .page-affiliate-program__faq-question {
    font-size: 1.1em;
  }
  .page-affiliate-program__faq-answer {
    font-size: 0.9em;
  }
  /* Ensure all images within content area are responsive and not too small */
  .page-affiliate-program img {
    max-width: 100%;
    height: auto;
  }
  .page-affiliate-program__hero-image {
    width: 100%;
    height: 100%; /* Cover full height of container */
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
  }
}