/* WhatsApp Widget styles */
.whatsapp-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    border-radius: 50%;
    padding: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 5;
}

.whatsapp-widget img {
    width: 50px;
    height: 50px;
    display: block;
}

.whatsapp-widget:hover {
    transform: scale(1.1);
}

