﻿.trust-banner {
  background-color: var(--black);
  color: var(--white);
  padding: 32px 0;
}

.trust-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: left;
}

.trust-item strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.trust-item p {
  margin: 0;
  font-size: 11px;
  opacity: 0.7;
}

.trust-item svg {
  color: var(--primary);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .trust-container {
    justify-content: center;
  }
  .trust-item {
    width: calc(50% - 24px);
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .trust-item {
    width: 100%;
  }
}

