.contactusButton {
    z-index: 100;
    position: fixed;
    right: 80px;
    bottom: 80px;
    height: 60px;
    width: 260px;
    background-color: #59D2FE;
    color: white;
    border: 2px solid #59D2FE;
    border-radius: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.contactusButton-body {
    display: flex;
    gap: 16px; 
    justify-content: center; 
    align-items: center;
}

.contactusButton-bodyText {
    display: flex; 
    flex-direction: column; 
    align-items: center;
}

@media screen and (max-width: 765px) {
    .contactusButton {
        display: none;
    }
}