#whatsapp-button {
    position: fixed;
    bottom: 40px;
    left: 0; /* Adjust the position from the left */
    cursor: pointer;
    z-index: 999;
}

#whatsapp-button img {
    width: 180px; /* Adjust the size of the WhatsApp icon */
    height: 65px;
}
/* Media query for smaller screens (adjust the max-width as needed) */
@media screen and (max-width: 768px) {
    #whatsapp-button {
        bottom: 20px; /* Adjust the position from the bottom on smaller screens */
    }

    #whatsapp-button img {
        width: 60px; /* Adjust the size of the WhatsApp icon for smaller screens */
        height: 40px;
    }
}