
    .clients-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 50px 0;
        background-color: #f9f9f9;
        font-family: 'Helvetica Neue', sans-serif;
        color: #333;
        margin: 15em auto;
    }

    .clients-detail {
        text-align: center;
        margin-bottom: 30px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .clients-detail h2 {
        color: #2c3e50;
    }

    .clients-detail p {
        font-size: 1.1em;
        line-height: 1.6;
        color: #7f8c8d;
    }

    .clients-groups {
        width: 100%;
        max-width: 1200px;
    }

    .client-group {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        padding: 20px 0;
    }

    .client-icon-wrap {
        width: calc(25% - 10px); /* Ensures four icons per row with spacing */
        height: 80px; /* Fixed height for all icons */
        display: flex;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
    }

    .client-icon-wrap img {
        max-width: 100%;
        max-height: 100%;
        filter: grayscale(100%);
        transition: transform 0.3s ease, filter 0.3s ease;
    }

    .client-icon-wrap img:hover {
        filter: grayscale(0);
        transform: scale(1.1);
    }

    .group-separator {
        border: none;
        border-top: 1px solid #ddd;
        width: 100%;
        margin: 10px 0;
    }

    @media (max-width: 768px) {
        .client-icon-wrap {
            width: calc(50% - 10px); /* Two icons per row on smaller screens */
        }
    }

    @media (max-width: 480px) {
        .client-icon-wrap {
            width: calc(100% - 10px); /* One icon per row on very small screens */
        }
    }
