.page-partners {
  color: #000000; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-partners__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 500px; /* Adjust as needed */
  padding-top: var(--header-offset, 120px);
}

.page-partners__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.page-partners__hero-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
}

.page-partners__hero-content {
  background: rgba(0, 0, 0, 0.7); /* Semi-transparent black overlay for text readability */
  padding: 40px;
  border-radius: 10px;
  color: #FFFFFF;
  position: relative;
  z-index: 1;
}

.page-partners__hero-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: #FCBC45; /* Login button color for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-partners__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-partners__hero-button {
  display: inline-block;
  background-color: #FCBC45; /* Login button color */
  color: #000000; /* Black text for login button */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-partners__hero-button:hover {
  background-color: #e0a53b;
}

.page-partners__content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #FFFFFF;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.page-partners__section-title {
  font-size: 2.5em;
  color: #000000;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
}

.page-partners__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FCBC45;
  margin: 15px auto 0;
}

.page-partners__sub-title {
  font-size: 1.8em;
  color: #333333;
  text-align: center;
  margin-bottom: 20px;
}

.page-partners__text-content {
  font-size: 1.1em;
  color: #333333;
  margin-bottom: 20px;
  text-align: justify;
}

.page-partners__provider-grid, .page-partners__payment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-partners__provider-card, .page-partners__payment-card {
  background-color: #F8F8F8;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-partners__provider-card:hover, .page-partners__payment-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.page-partners__provider-image, .page-partners__payment-image {
  width: 100%;
  height: auto;
  max-height: 200px;
  object-fit: contain;
  margin-bottom: 15px;
  border-radius: 5px;
  min-width: 200px; /* Enforce min image size */
  min-height: 150px; /* Ensure images are not too small */
}

.page-partners__card-title {
  font-size: 1.4em;
  color: #000000;
  margin-bottom: 10px;
}

.page-partners__card-description {
  font-size: 1em;
  color: #555555;
}

.page-partners__button {
  display: block;
  width: fit-content;
  margin: 40px auto 20px auto;
  background-color: #000000; /* Primary color */
  color: #FFFFFF; /* White text */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-partners__button:hover {
  background-color: #333333;
}

.page-partners__button--primary {
  background-color: #FCBC45; /* Login button color */
  color: #000000; /* Black text */
}

.page-partners__button--primary:hover {
  background-color: #e0a53b;
}

.page-partners__affiliate-image {
  display: block;
  width: 100%;
  height: auto;
  max-width: 800px;
  margin: 40px auto 0 auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  min-width: 200px; /* Enforce min image size */
  min-height: 200px; /* Enforce min image size */
}

.page-partners__security-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.page-partners__security-image {
  width: 100%;
  max-width: 200px;
  height: auto;
  object-fit: contain;
  filter: none; /* Ensure no color filters are applied */
  min-width: 200px; /* Enforce min image size */
  min-height: 150px; /* Ensure images are not too small */
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-partners__hero-title {
    font-size: 2.2em;
  }

  .page-partners__hero-description {
    font-size: 1em;
  }

  .page-partners__section-title {
    font-size: 2em;
  }

  .page-partners__sub-title {
    font-size: 1.5em;
  }

  .page-partners__content-wrapper {
    padding: 20px;
  }

  .page-partners__provider-grid, .page-partners__payment-grid {
    grid-template-columns: 1fr;
  }

  .page-partners__hero-section {
    min-height: 400px;
    padding-top: var(--header-offset, 80px);
  }

  .page-partners__hero-content {
    padding: 25px;
  }

  .page-partners__provider-image, .page-partners__payment-image, .page-partners__affiliate-image, .page-partners__security-image {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Enforce min image size */
    min-height: 150px; /* Ensure images are not too small */
  }

  .page-partners__text-content img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Enforce min image size */
    min- /* Ensure images are not too small */
  }

  .page-partners__security-badges {
    flex-direction: column;
    align-items: center;
  }

  .page-partners__security-image {
    width: 100%;
    max-width: 250px;
  }
}

/* Ensure all content area images are responsive and meet minimum size requirements */
.page-partners img {
  max-width: 100%;
  height: auto;
  display: block;
  filter: none; /* Absolutely no color filters */
  min-width: 200px;
  min-
}

/* Specific override for smaller images within cards to ensure they are not tiny, but still respect their aspect ratio within min size */
.page-partners__provider-image,
.page-partners__payment-image {
  width: 100%; /* Occupy full card width */
  height: auto;
  max-height: 250px; /* Cap height to prevent overly tall images */
  object-fit: contain; /* Ensure image fits within bounds without cropping */
  min-width: 200px;
  min-height: 150px;
}

/* Mobile specific image sizing for all images within .page-partners */
@media (max-width: 768px) {
  .page-partners img {
    max-width: 100%;
    height: auto;
    min-width: 200px;
    min-
  }
  .page-partners__hero-image {
    min-height: 300px;
  }
}