.whatsapp-button {
    position: fixed;
    bottom:30px;
    right: 31px;
    z-index: 1000;
    width: 60px;
    height: 60px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.whatsapp-button img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.whatsapp-button:hover {
    transform: scale(1.1);
}

.messenger-button {
    position: fixed;
    bottom:30px;
    left: 31px;
    z-index: 1000;
    width: 60px;
    height: 60px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.messenger-button img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.messenger-button:hover {
    transform: scale(1.1);
}