/* Trusted Brands Section */
.trusted-brands-section {
    margin: 80px auto;
    text-align: center;
    max-width: 1400px;
}

.trusted-brands-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}

.divider {
    height: 1px;
    width: 80px;
    background-color: #e0e0e0;
    margin: 0 15px;
}

.trusted-brands-header h3 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    white-space: nowrap;
}

.brand-logos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin: 0 auto;
    max-width: 900px;
}

.brand-logo {
    height: 30px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    filter: grayscale(100%);
}

.brand-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
}

/* Responsive styles */
@media (max-width: 1200px) {
    .brand-logos {
        max-width: 800px;
    }
}

@media (max-width: 992px) {
    .trusted-brands-section {
        margin: 70px auto;
    }
    
    .trusted-brands-header h3 {
        font-size: 22px;
    }
    
    .brand-logos {
        max-width: 700px;
        gap: 25px;
    }
    
    .brand-logo {
        height: 32px;
    }
}

@media (max-width: 768px) {
    .trusted-brands-section {
        margin: 60px auto;
    }
    
    .trusted-brands-header {
        gap: 10px;
    }
    
    .trusted-brands-header h3 {
        font-size: 20px;
        white-space: normal;
        text-align: center;
        line-height: 1.3;
        max-width: 280px;
    }
    
    .divider {
        width: 60px;
    }
    
    .brand-logos {
        justify-content: center;
        flex-wrap: wrap;
        gap: 30px;
    }
    
    .brand-logo {
        height: 28px;
    }
}

@media (max-width: 576px) {
    .trusted-brands-section {
        margin: 50px auto;
    }
    
    .trusted-brands-header {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 30px;
    }
    
    .trusted-brands-header h3 {
        font-size: 18px;
        max-width: 100%;
        padding: 0 10px;
    }
    
    .divider {
        width: 70px;
        margin: 0;
    }
    
    .brand-logos {
        gap: 20px;
    }
    
    .brand-logo {
        height: 24px;
        width: auto;
    }
}

@media (max-width: 480px) {
    .trusted-brands-section {
        margin: 40px auto;
    }
    
    .trusted-brands-header h3 {
        font-size: 16px;
    }
    
    .brand-logos {
        gap: 15px;
        padding: 0 10px;
    }
    
    .brand-logo {
        height: 20px;
        max-width: 85px;
    }
} 