.about-us {
    display: flex;
    flex-direction: column;
    background-color: #003b4a;
    width: 80%;
    border-radius: 15px;
    text-align: center;
    color: white;
    margin: auto;
    margin-top: 20px;
    padding: 25px;
}

.about-us p{
    font-size: 18pt;
    justify-content: center;
}

#faq {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#faq a{
    text-decoration: underline;
    color: black;
}

#faq a:hover{
    color: #003b4a;
}

@media screen and (max-width: 768px) {
    .about-us {
        display: flex;
        flex-wrap: nowrap;
    }
}