.help_content {
    width: 80%;
    height: 70%;
    margin: 30px auto;
    background-color: rgba(255, 255, 255, 0.7);
}

.help_navbar {
    box-shadow: 0 8px 6px -6px rgba(0, 0, 0, 0.3);
    height: 10%;
}

#legalNotices-button, #privacy-button, #termsOfUse-button {
    padding: 1.2em 1em;
    color: white;
    width: 33%;
    text-align: center;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

#legalNotices-button:hover, #privacy-button:hover, #termsOfUse-button:hover {
    transition: box-shadow 0.2s;
    box-shadow: 0 8px 6px -6px rgba(0, 0, 0, 0.5);
}

.active {
    background-color: #184A70;
}

.notActive {
    background-color: #2370A8;
}

.help-detail {
    height: calc(90% - 40px);
    padding: 20px;
    overflow-y: scroll;
}

p {
    text-align: justify;
}

a {
    color: #2370A8;
    font-weight: bold;
}

a:hover {
    color: #184A70;
}

#privacy,
#termsOfUse,
#privacyM,
#termsOfUseM {
    display: none;
}

@media screen and (min-width:900px) {
    #legalNoticesM {
        display: none;
    }
}

@media screen and (max-width:900px) {

    .help_content {
        height: auto;
    }

    .help_navbar {
        flex-direction: column;
    }

    #legalNotices-button, #privacy-button, #termsOfUse-button {
        width: 90%;
    }

    .help-detailM {
        width: calc(100% - 40px);
        padding: 20px;
    }

    #legalNotices {
        display: none;
    }
}