.benefitBanner__item {
  width: 100%;
  display: block;
  border-left: 4px solid #01b3b5;
  border-radius: 8px;
  background-color: #f8f8f8;
  padding: 20px;
  margin-bottom: 20px !important;
  box-sizing: border-box;
}

.benefitBanner__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  flex-wrap: nowrap;
  gap: 20px;
  box-sizing: border-box;
}

.benefitBanner__data {
  flex: 1 1 auto;
  max-width: 100%;
  text-align: left;
  box-sizing: border-box;
}

.benefitBanner__images {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  box-sizing: border-box;
  flex: 0 0 auto;
  max-width: none;
}

.benefitBanner__images img {
  width: 330px !important;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: contain;
  display: block;
}

.benefitBanner__button {
  display: inline-block;
  width: 190px;
  background-color: #01b3b5;
  color: #fff;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: bold;
  text-align: center !important;
  text-decoration: none;
  border-radius: 6px;
}

.benefitBanner__button:hover {
  background-color: #01b3b5 !important;
  color: #fff !important;
  text-decoration: none !important;
}

@media (max-width: 767px) {
  .benefitBanner__images {
    display: none;
  }

  .benefitBanner__data {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .partner-logos {
    flex-wrap: wrap;
    justify-content: center;
  }

  .partner-logos a {
    flex: 1 1 22%;
    max-width: 60px;
  }

  .partner-logos a:nth-child(n+5) {
    display: none;
  }

  .partner-link {
    text-align: center;
  }
}

.partner-logos-wrapper {
  width: 100%;
  margin-top: 20px;
  text-align: center;
}

.partner-logos {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px;
  background: #f8f8f8;
  border-radius: 12px;
  width: 100%;
}

.partner-logos a {
  flex: 1 1 calc(100% / 6 - 20px);
  max-width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.partner-logos img {
  max-width: 100%;
  height: auto;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
  max-height: 50px;
  object-fit: contain;
}

.partner-logos img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}