.whatsapp-button {
    position: fixed;
    bottom: 20px;
    left: 50px;
    background-color: #25D366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.whatsapp-button:hover {
    transform: scale(1.1);
}

.whatsapp-button img {
    width: 35px;
    height: 35px;
}

.whatsapp-box {
    position: fixed;
    bottom: 90px;
    left: 20px;
    background: white;
    z-index: 999;
    color: #333;
    padding: 10px 20px;
    border-radius: 5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: none;
}


