/* Trust Bar Styles */
.trust-bar {
    background-color: #f8f9fa;
    padding: 2rem 0;
    border-bottom: 1px solid #e9ecef;
}

.trust-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

.trust-label {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    white-space: nowrap;
    margin-right: 1rem;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    flex-grow: 1;
    justify-content: flex-end;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #555;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.trust-badge:hover {
    color: #2c5aa0;
    opacity: 1;
    transform: translateY(-2px);
}

.trust-badge i {
    font-size: 1.8rem;
    color: #2c5aa0;
}

/* Specific icon colors if needed */
.trust-badge i.fa-leaf { color: #28a745; }
.trust-badge i.fa-award { color: #ffc107; }
.trust-badge i.fa-check-circle { color: #17a2b8; }

/* Responsive adjustments */
@media (max-width: 768px) {
    .trust-wrapper {
        flex-direction: column;
        text-align: center;
    }
    
    .trust-badges {
        justify-content: center;
        width: 100%;
    }
    
    .trust-label {
        margin-right: 0;
        margin-bottom: 1rem;
        width: 100%;
    }
}
