    #help-button {
        position: fixed;
        bottom: 20px;
        right: 20px;
        background-color: #FED78B;
        border-radius: 25px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        z-index: 1000;
        transition: width 0.4s ease-in-out, background-color 0.4s ease-in-out, box-shadow 0.3s ease;
        overflow: hidden;
        white-space: nowrap;
        width: 50px;
    }
    
    #help-button:hover {
        background-color: #E0BD78;
        width: 180px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    }
    
    #help-button a {
        color: #fff;
        text-decoration: none;
        display: flex;
        align-items: center;
        height: 50px;
        padding: 0 10px;
    }
    
    .question-mark {
        font-size: 24px;
        font-weight: bold;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 30px;
        flex-shrink: 0;
    }
    
    .help-text {
        font-size: 16px;
        margin-left: 5px;
        opacity: 0;
        transform: translateX(10px);
        transition: opacity 0.3s ease-in, transform 0.3s ease-in;
    }
    
    #help-button:hover .help-text {
        opacity: 1;
        transform: translateX(0);
        transition-delay: 0.1s; 
    }

    #don-button {
    position: fixed;
    bottom: 80px;
    right: 20px;
    background-color: #FED78B;
    border-radius: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    transition: width 0.4s ease-in-out, background-color 0.4s ease-in-out, box-shadow 0.3s ease;
    overflow: hidden;
    white-space: nowrap;
    width: 50px;
}

#don-button:hover {
    background-color: #E0BD78;
    width: 180px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

#don-button a {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    height: 50px;
    padding: 0 10px;
}

.heart-icon {
    font-size: 24px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    flex-shrink: 0;
}

.don-text {
    font-size: 16px;
    margin-left: 5px;
    opacity: 0;
    transform: translateX(10px);
    transition: opacity 0.3s ease-in, transform 0.3s ease-in;
}

#don-button:hover .don-text {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.1s; 
}