.logo-box{
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 8px;
}

.company-logo{
    max-width: 65%;
    max-height: 65%;
    object-fit: contain;
}

.service-icon img{
    width: 64px;
    height: 64px;
    object-fit: contain;
}

.contact-icon{
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-icon img{
    width: 40px;
    height: 40px;
    object-fit: contain;
}
.contact-icon img{
    width: 40px;
    height: 40px;
    object-fit: contain;
    transition: transform 0.3s;
}

.contact-icon img:hover{
    transform: scale(1.1);
}