.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

.whatsapp-float-link {
    display: block;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.whatsapp-float-link:hover {
    background-color: #128C7E;
}

.whatsapp-float-icon {
    display: block;
    width: 40px;
    height: 40px;
    background-image: url('../img/whatsapp-icon.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}