#content {
    width: 90%;
    max-width: 1200px;
    margin: 40px auto;
}

#content .legal_title {
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    font-size: 2rem;
    color: #333;
    text-transform: uppercase;
}

#content .legal_table {
    display: flex;
    flex-direction: column;
    row-gap: 4px;
}
#content .legal_table .legal_table_row {
    display: flex;
    flex-direction: row;
}
#content .legal_table .legal_table_row .legal_table_row_title {
    flex-basis: 25%;
    font-weight: bold;
    color: #333;
    background-color: rgba(200, 200, 200, 0.5);
    padding: 4px 8px;
}
#content .legal_table .legal_table_row .legal_table_row_text {
    flex-grow: 1;
    padding: 4px 8px;
}

#content .legal_section_title {
    text-transform: uppercase;
    font-weigh: 900;
    color: #333;
    font-size: 1.25rem;
    margin-top: 40px;
    margin-bottom: 20px;
}

#content p {
    margin-top: 10px;
    text-align: justify;
    line-height: 1.25;
}
#content a {
    color: #555;
}

@media only screen and (max-width: 600px) {
    #content .legal_table .legal_table_row { flex-direction: column; }
}
