#contact-popup {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #0073e6;
    padding: 10px 15px;
    border-radius: 25px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

#contact-popup a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    display: flex;
    align-items: center;
}

#contact-popup img {
    width: 25px;
    height: 25px;
}

#contact-popup:hover {
    background-color: #005bb5;
    transform: scale(1.1);
}
