/* style/affiliate-program-overview.css */
.page-affiliate-program-overview {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #0A2342; /* Main dark blue background */
  line-height: 1.6;
}

.page-affiliate-program-overview__hero-section {
  background: linear-gradient(135deg, #0A2342 0%, #1A3A60 100%);
  padding: 100px 4%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 550px;
  justify-content: center;
}

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

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

.page-affiliate-program-overview__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold for main titles */
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-affiliate-program-overview__hero-description {
  font-size: 1.3em;
  color: #F0F0F0;
  margin-bottom: 30px;
  line-height: 1.8;
}

.page-affiliate-program-overview__hero-image-wrapper {
  position: absolute;
  bottom: -50px;
  right: -50px;
  opacity: 0.3;
  z-index: 0;
  width: 400px;
  height: 400px;
}

.page-affiliate-program-overview__hero-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.page-affiliate-program-overview__section {
  padding: 60px 4%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.page-affiliate-program-overview__section-title {
  font-size: 2.8em;
  color: #FFD700; /* Gold for section titles */
  margin-bottom: 25px;
  font-weight: bold;
}

.page-affiliate-program-overview__section-intro {
  font-size: 1.1em;
  color: #C0C0C0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-affiliate-program-overview__btn {
  display: inline-block;
  padding: 15px 30px;
  margin: 10px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-affiliate-program-overview__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #0A2342; /* Dark blue text on gold */
}

.page-affiliate-program-overview__btn--primary:hover {
  background-color: #E6C200;
  transform: translateY(-2px);
}

.page-affiliate-program-overview__btn--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text for secondary button */
  border: 2px solid #FFD700;
}

.page-affiliate-program-overview__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A2342;
  transform: translateY(-2px);
}

.page-affiliate-program-overview__features-grid,
.page-affiliate-program-overview__steps-grid,
.page-affiliate-program-overview__resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-affiliate-program-overview__feature-item,
.page-affiliate-program-overview__step-item,
.page-affiliate-program-overview__resource-item {
  background-color: #1A3A60; /* Slightly lighter dark blue for cards */
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-affiliate-program-overview__feature-item:hover,
.page-affiliate-program-overview__step-item:hover,
.page-affiliate-program-overview__resource-item:hover {
  transform: translateY(-5px);
  background-color: #2D5280;
}

.page-affiliate-program-overview__feature-icon,
.page-affiliate-program-overview__resource-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px #FFD700);
}

.page-affiliate-program-overview__feature-title,
.page-affiliate-program-overview__resource-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-affiliate-program-overview__feature-description,
.page-affiliate-program-overview__resource-description {
  font-size: 1em;
  color: #C0C0C0;
}

.page-affiliate-program-overview__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #FFD700;
  color: #0A2342;
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-affiliate-program-overview__step-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-affiliate-program-overview__step-description {
  font-size: 1em;
  color: #C0C0C0;
}

.page-affiliate-program-overview__cta-block {
  background-color: #1A3A60;
  padding: 40px;
  border-radius: 12px;
  margin-top: 60px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.page-affiliate-program-overview__cta-block p {
  font-size: 1.5em;
  color: #F0F0F0;
  margin-bottom: 25px;
}

.page-affiliate-program-overview__commission-structure {
  background-color: #0A2342;
}

.page-affiliate-program-overview__table-wrapper {
  overflow-x: auto;
  margin-top: 40px;
}

.page-affiliate-program-overview__commission-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 auto;
  min-width: 600px;
}

.page-affiliate-program-overview__commission-table th,
.page-affiliate-program-overview__commission-table td {
  border: 1px solid #2D5280;
  padding: 15px;
  text-align: center;
  font-size: 1.1em;
}

.page-affiliate-program-overview__commission-table th {
  background-color: #FFD700;
  color: #0A2342;
  font-weight: bold;
}

.page-affiliate-program-overview__commission-table td {
  background-color: #1A3A60;
  color: #F0F0F0;
}

.page-affiliate-program-overview__table-note {
  font-size: 0.9em;
  color: #999;
  margin-top: 20px;
  text-align: left;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-affiliate-program-overview__image-text-block {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 60px;
  text-align: left;
}

.page-affiliate-program-overview__image-text-block--reverse {
  flex-direction: row-reverse;
}

.page-affiliate-program-overview__image-text-block .page-affiliate-program-overview__image-wrapper {
  flex: 1;
  min-width: 300px;
}

.page-affiliate-program-overview__block-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-affiliate-program-overview__image-text-block .page-affiliate-program-overview__text-content {
  flex: 1;
}

.page-affiliate-program-overview__block-title {
  font-size: 2em;
  color: #FFD700;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-affiliate-program-overview__text-content p {
  font-size: 1.1em;
  color: #C0C0C0;
  margin-bottom: 15px;
}

.page-affiliate-program-overview__faq {
  background-color: #1A3A60;
}

.page-affiliate-program-overview__accordion {
  margin-top: 40px;
  text-align: left;
}

.page-affiliate-program-overview__accordion-item {
  background-color: #0A2342;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-affiliate-program-overview__accordion-header {
  background-color: #2D5280;
  color: #F0F0F0;
  padding: 20px 25px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-affiliate-program-overview__accordion-header:hover {
  background-color: #3A6599;
}

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

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

.page-affiliate-program-overview__accordion-content {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
  background-color: #0A2342;
}

.page-affiliate-program-overview__accordion-content.active {
  max-height: 200px; /* Adjust as needed */
  padding: 20px 25px;
}

.page-affiliate-program-overview__accordion-content p {
  color: #C0C0C0;
  margin-bottom: 10px;
}

.page-affiliate-program-overview__accordion-content a {
  color: #FFD700;
  text-decoration: none;
}

.page-affiliate-program-overview__accordion-content a:hover {
  text-decoration: underline;
}

.page-affiliate-program-overview__cta-final {
  background: linear-gradient(45deg, #0A2342, #1A3A60);
  padding: 80px 4%;
  text-align: center;
}

.page-affiliate-program-overview__cta-title {
  font-size: 3em;
  color: #FFD700;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-affiliate-program-overview__cta-description {
  font-size: 1.2em;
  color: #F0F0F0;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-affiliate-program-overview__floating-promo {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

.page-affiliate-program-overview__floating-btn {
  background-color: #FFD700;
  color: #0A2342;
  padding: 12px 20px;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  text-decoration: none;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-affiliate-program-overview__floating-btn:hover {
  transform: translateY(-5px);
  background-color: #E6C200;
}

.page-affiliate-program-overview__floating-icon {
  width: 30px;
  height: 30px;
  filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.3));
}

.page-affiliate-program-overview__floating-text {
  font-size: 1em;
}

@media (max-width: 992px) {
  .page-affiliate-program-overview__hero-title {
    font-size: 2.8em;
  }
  .page-affiliate-program-overview__section-title {
    font-size: 2.2em;
  }
  .page-affiliate-program-overview__image-text-block {
    flex-direction: column;
    text-align: center;
  }
  .page-affiliate-program-overview__image-text-block--reverse {
    flex-direction: column;
  }
  .page-affiliate-program-overview__block-title {
    margin-top: 30px;
  }
  .page-affiliate-program-overview__hero-image-wrapper {
    display: none; /* Hide decorative image on smaller screens */
  }
}

@media (max-width: 768px) {
  .page-affiliate-program-overview__hero-title {
    font-size: 2.2em;
  }
  .page-affiliate-program-overview__hero-description {
    font-size: 1.1em;
  }
  .page-affiliate-program-overview__section-title {
    font-size: 1.8em;
  }
  .page-affiliate-program-overview__section-intro {
    font-size: 0.95em;
  }
  .page-affiliate-program-overview__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-affiliate-program-overview__features-grid,
  .page-affiliate-program-overview__steps-grid,
  .page-affiliate-program-overview__resources-grid {
    grid-template-columns: 1fr;
  }
  .page-affiliate-program-overview__feature-item,
  .page-affiliate-program-overview__step-item,
  .page-affiliate-program-overview__resource-item {
    padding: 25px;
  }
  .page-affiliate-program-overview__feature-title,
  .page-affiliate-program-overview__resource-title {
    font-size: 1.4em;
  }
  .page-affiliate-program-overview__step-title {
    font-size: 1.6em;
  }
  .page-affiliate-program-overview__block-title {
    font-size: 1.8em;
  }
  .page-affiliate-program-overview__cta-title {
    font-size: 2.5em;
  }
  .page-affiliate-program-overview__floating-btn {
    padding: 10px 15px;
    font-size: 0.9em;
  }
  .page-affiliate-program-overview__floating-icon {
    width: 25px;
    height: 25px;
  }
}

@media (max-width: 480px) {
  .page-affiliate-program-overview__hero-title {
    font-size: 1.8em;
  }
  .page-affiliate-program-overview__hero-description {
    font-size: 0.9em;
  }
  .page-affiliate-program-overview__section-title {
    font-size: 1.5em;
  }
  .page-affiliate-program-overview__btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-affiliate-program-overview__cta-title {
    font-size: 2em;
  }
  .page-affiliate-program-overview__accordion-header {
    font-size: 1em;
    padding: 15px 20px;
  }
  .page-affiliate-program-overview__accordion-content {
    padding: 15px 20px;
  }
  .page-affiliate-program-overview__floating-promo {
    bottom: 10px;
    right: 10px;
  }
  .page-affiliate-program-overview__floating-btn {
    gap: 5px;
  }
}