/* Homepage trust signals bar */
.trust-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 28px;
    margin: 14px auto 18px;
    padding: 12px 16px;
    max-width: 900px;
    background: #f4f8f5;
    border: 1px solid #dbe8dd;
    border-radius: 8px;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #222;
    white-space: nowrap;
}
.trust-item .icon {
    color: #036811;
    width: 1.15em;
    height: 1.15em;
    flex-shrink: 0;
}
@media (max-width: 600px) {
    .trust-bar {
        gap: 10px 16px;
        padding: 10px;
    }
    .trust-item {
        font-size: 0.72rem;
    }
}
