/* CSS for WhatsApp button */
.whatsapp-button {
    position: fixed;
    bottom: 10%;
    right: 10%;
    z-index: 9999;
    background-color: #25d366;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
    font-size: 24px;
    transition: background-color 0.3s;
}

.whatsapp-button:hover {
    background-color: #128c7e;
}

/* Style for the WhatsApp icon */
.whatsapp-icon {
    font-size: 30px;
    color: white;
}

@media (max-width: 768px) {
    .whatsapp-button {
        display: none;
    }
}