```css
.lf-section {
  padding: 1rem 1rem;
  background: #ffffff;
  font-family: 'Open Sans', sans-serif;
}

.lf-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.lf-logos {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 0.1rem;
  flex-wrap: wrap;
}

.lf-logos__label {
  font-family: 'Open Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #363636;
  white-space: nowrap;
  flex-shrink: 0;
}

.lf-logos__track {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.lf-logos__logo {
  height: 78px;
  width: auto;
  object-fit: contain;
  transition: opacity 0.9s ease;
}

.lf-logos__logo:hover {
  opacity: 0.7;
}

.lf-divider {
  border: none;
  border-top: 1px solid #e5e7eb;
  margin-bottom: 1rem;
}

.lf-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.lf-feature {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.lf-feature__top {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.lf-feature__icon {
  width: 44px;
  height: 44px;
  background: #f0f2fb;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  flex-shrink: 0;
}

.lf-feature__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.lf-feature__title {
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #111111;
  margin: 0;
  line-height: 1.4;
}

.lf-feature__body {
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #363636;
  line-height: 1.7;
  margin: 0;
}

.lf-feature__body p {
  margin: 0;
}

@media (max-width: 900px) {
  .lf-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .lf-logos {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .lf-logos__track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem 1rem;
    width: 100%;
  }

  .lf-logos__logo {
    height: 54px;
    width: 100%;
    object-fit: contain;
    object-position: left center;
  }

  .lf-features {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 400px) {
  .lf-logos__track {
    grid-template-columns: repeat(2, 1fr);
  }
}
```