/* Trusted Technologies Section */
.trusted-brands{
    width:100%;
    background:#ffffff;
    padding:30px 20px;
}

.trusted-wrapper{
    max-width:1200px;
    margin:0 auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:50px;
}

.trusted-left{
    flex:0 0 260px;
}

.trusted-small-title{
    color:#0d63ff;
    font-size:12px;
    font-weight:800;
    letter-spacing:1.5px;
    text-transform:uppercase;
    margin-bottom:12px;
}

.trusted-heading{
    color:#111827;
    font-size:20px;
    font-weight:500;
    line-height:1.5;
}

.trusted-logos{
    flex:1;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:45px;
}

.logo-item{
    display:flex;
    align-items:center;
    justify-content:center;
    min-width:95px;
    text-decoration:none;
}

.logo-item img{
    height:34px;
    width:auto;
    max-width:135px;
    object-fit:contain;
    display:block;
    filter:grayscale(100%);
    opacity:0.75;
    transition:all 0.25s ease;
}

.logo-item:hover img{
    filter:grayscale(0%);
    opacity:1;
    transform:translateY(-2px);
}

.logo-disclaimer{
    max-width:1200px;
    margin:18px auto 0;
    text-align:center;
    font-size:11px;
    color:#8a8a8a;
    line-height:1.5;
}

/* Tablet */
@media(max-width:992px){
    .trusted-wrapper{
        flex-direction:column;
        text-align:center;
        gap:35px;
    }

    .trusted-left{
        flex:initial;
    }

    .trusted-logos{
        width:100%;
        justify-content:center;
        flex-wrap:wrap;
        gap:35px;
    }
}

/* Mobile */
@media(max-width:576px){
    .trusted-brands{
        padding:28px 16px;
    }

    .trusted-heading{
        font-size:18px;
    }

    .trusted-logos{
        display:grid;
        grid-template-columns:repeat(2, 1fr);
        gap:28px 25px;
    }

    .logo-item{
        min-width:auto;
    }

    .logo-item img{
        height:30px;
        max-width:115px;
    }

    .logo-disclaimer{
        font-size:10px;
        margin-top:16px;
    }
}