/* Trust Indicators */
.trust-indicators {
    background: var(--light-gray);
    padding: 80px 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.trust-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(142, 78, 198, 0.15);
}

.trust-icon {
    font-size: 3.5rem;
    color: var(--primary-purple);
    margin-bottom: 20px;
}

.trust-item h4 {
    color: var(--dark-purple);
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: bold;
}

.trust-item p {
    color: var(--dark-gray);
    line-height: 1.6;
}

/* Trust Responsive */
@media (max-width: 768px) {
    .trust-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}