/* Social Proof Section Styles */
.social-proof-section {
    padding: 60px 0;
    background-color: #f8f9fa;
    text-align: center;
}

.social-proof-content {
    max-width: 1200px;
    margin: 0 auto;
}

.social-proof-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    position: relative;
}

.social-proof-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 10px;
    font-weight: 400;
    line-height: 1.6;
}

.company-logos-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
}

.company-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    /* width: 100%; */
    /* max-width: 200px; */
    transition: all 0.3s ease;
}

.company-logo-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.company-logo-wrapper {
    display: block;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.company-logo-image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

/* Hover state removed */

/* Hover state removed */

/* Responsive Design */
@media (max-width: 768px) {
    .social-proof-section {
        padding: 40px 0;
    }
    
    .social-proof-title {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .social-proof-subtitle {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    
    .company-logos-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 30px;
    }
    
    .company-logo-item {
        height: 60px;
        max-width: 150px;
    }
}

@media (max-width: 480px) {
    .social-proof-title {
        font-size: 1.75rem;
    }
    
    .social-proof-subtitle {
        font-size: 1rem;
    }
    
    .company-logos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .company-logo-item {
        height: 50px;
    }
}

