#legalsPage {
    text-wrap: initial;
}

#legalsPage .section-content {
    margin-top: 60px;
}

h1 {
    text-align: center;
    margin-bottom: 40px;
    width: max-content;
    margin-left: auto;
    margin-right: auto;
}

.section-content > div {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.section-content > div h2 {
    margin-bottom: -10px;
}

.section-content > div h3 {
    margin-bottom: 5px;
}

.section-content > div a {
    display: inline;
    font-size: unset;
}

#legalsPage .section-content > div a:hover {
    color: var(--blue);
}


    /* Pad Version */
    @media screen and (min-width: 768px) {
        #legalsPage .section-content {
            margin-top: 75px;
        }

        h1 {
            margin-bottom: 60px;
        }

        .section-content > div {
            margin-bottom: 40px;
        }
    }


        /* Desktop Version */
        @media screen and (min-width: 992px) {
            #legalsPage .section-content {
                margin-top: 90px;
            }

            h1 {
                margin-bottom: 80px;
            }

            .section-content > div {
                margin-bottom: 50px;
            }
        }