/* Trust strip section specific styles */
.trust-strip {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border-light);
}
@media (max-width: 1099px) { .trust-strip { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 619px) { .trust-strip { grid-template-columns: 1fr; } }
.trust-strip__item { padding: 18px 22px; background: var(--white); }
.trust-strip__head { display: flex; align-items: center; gap: 10px; }
.trust-strip__head .icon { width: 19px; height: 19px; color: var(--blue); }
.trust-strip__title { font-family: var(--font-heading); font-size: 16.5px; font-weight: 600; color: var(--navy); }
.trust-strip__desc { margin-top: 6px; font-size: 14px; line-height: 1.55; color: var(--text-muted); }
