.trust-badges {
  background: #ebebeb;
  padding: 48px 24px;
}

.trust-badges__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 32px;
}

.trust-badges__item {
  flex: 1;
  text-align: center;
}

.trust-badges__icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-badges__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.trust-badges__title {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.trust-badges__text {
  font-size: 13px;
  color: #777;
  line-height: 1.5;
}

@media (max-width: 760px) {
  .trust-badges__inner {
    flex-direction: column;
    align-items: center;
    gap: 36px;
  }

  .trust-badges__item {
    max-width: 300px;
  }
}
