/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jul 06 2026 | 05:52:32 */
.top-trust-icons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 28px 0;
}

.top-trust-icons,
.top-trust-icons * {
  box-sizing: border-box;
}

.trust-item {
  background: #fff;
  border: 1px solid #e4e8ec;
  border-radius: 14px;
  padding: 22px 16px;
  text-align: center;
  box-shadow: 0 3px 12px rgba(0,0,0,0.04);
  min-height: 148px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.trust-icon.simple-icon {
  width: 42px;
  height: 42px;
  margin: 0 auto 12px;
  background: #2B6CB0;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  flex-shrink: 0;
}

.trust-icon.simple-icon svg {
  width: 22px;
  height: 22px;
  display: block;
}

.trust-item p {
  margin: 0;
  font-size: 16.5px;
  line-height: 1.65;
  font-weight: 600;
  color: #333;
}

@media (max-width: 768px) {
  .top-trust-icons {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 22px 0;
  }

  .trust-item {
    padding: 18px 12px;
    min-height: 136px;
  }

  .trust-icon.simple-icon {
    width: 38px;
    height: 38px;
    margin-bottom: 10px;
  }

  .trust-icon.simple-icon svg {
    width: 18px;
    height: 18px;
  }

  .trust-item p {
    font-size: 14.5px;
    line-height: 1.55;
  }
}

@media (max-width: 420px) {
  .trust-item {
    padding: 16px 10px;
    min-height: 132px;
  }

  .trust-item p {
    font-size: 14px;
  }
}