body, html {
    overflow-x: hidden; /* Prevent horizontal scrolling */
}

.menu {
    display: none;
    list-style: none;
    gap: 20px;
}

.menu-icon {
    font-size: 30px;
    cursor: pointer;
    display: none;
    color: white;
}

.close-icon {
    font-size: 30px;
    cursor: pointer;
    display: none;
    color: white;
    position: absolute;
    top: 20px;
    right: 10%;
}

    .text-box-speciality {
        display: flex;
        width: auto;
        padding: 0;
        margin: 0 auto;
        text-align: center;
    }

    .container-text-box-speciality {
        width: 400px;
        display: flex;
    }

@media (max-width: 720px) {
    .menu {
        display: none;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.9);
        z-index: 1000;
    }
    
    .text-box-speciality {
        display: block;
        width: auto;
        padding: 0;
        margin: 0 auto;
        text-align: center;
    }
    
    .container-text-box-speciality {
        width: auto;
    }
    
.close-icon {
    font-size: 30px;
    cursor: pointer;
    display: none;
    color: white;
    position: absolute;
    top: 45%;
    right: 10%;
    z-index: 2000;
}

    .menu a {
        color: white;
        font-size: 24px;
        padding: 20px;
        text-decoration: none;
        display: block;
    }

    .menu-icon {
        display: block;
        position: absolute;
        top: 45%;
        right: 10%;
    }

    .menu-icon {
        display: block;
    }
}