body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f8f9fa;
}

#clients {
    background-color: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

#clients h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 2rem;
}

.client-logos .col-6 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.client-logos img {
    max-width: 100%;
    height: auto;
    transition: transform 0.3s ease-in-out;
    padding: 10px;
    background-color: #f1f1f1;
    border-radius: 8px;
}

.client-logos img:hover {
    transform: scale(1.1);
}

@media (max-width: 576px) {
    .client-logos .col-6 {
        margin-bottom: 20px;
    }
}
