.floating-help {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: #f9c60c;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    font-weight: bold;
    color: #000;
    text-decoration: none;  
    cursor: pointer;
    z-index: 9999;
    transition: transform 0.2s ease;
}

.floating-help:hover {
    transform: scale(1.1);
}
