.contact-us-button {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 100;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    white-space: nowrap;
    outline: none;
    appearance: none;
    text-decoration: none;
    color: #FFFFFF;
    background-color: #3857FF;
    border: 4px solid #DCE2F2;
    border-radius: 80px;
    padding: 20px 24px;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 24px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: color 0.25s ease-in-out, border-color 0.25s ease-in-out, background-color 0.25s ease-in-out, box-shadow 0.25s ease-in-out;
}

@media (hover: hover) and (pointer: fine) {
    .contact-us-button:hover {
        box-shadow: 0px 1.72px 6.27px 0px #1161FF;
    }

    .contact-us-button:active {
        box-shadow: none;
        background-color: rgba(56, 87, 255, 0.8);
    }
}

@media (max-width: 518px) {
    .contact-us-button {
        right: 16px;
        bottom: 16px;
    }

    html body {
        padding-bottom: 100px;
    }
}
