#floating-contact-button {
    position: fixed;
    top: 200px;  /* Distance from top */
    right: 10px;  /* Distance from right */
    z-index: 9999;
}

#floating-button-link img {
    width: 230px; /* Adjust width as needed */
    height: auto;
    display: block;
    transition: transform 0.3s ease-in-out;
}

#floating-button-link img:hover {
    transform: scale(1.1); /* Slight zoom effect on hover */
}
