/* LEGAL.CSS */

.page-hero
{
    position: relative;
    padding: 190px 0 120px;
    background:
        linear-gradient(
            to right,
            rgba(0,0,0,.82),
            rgba(0,0,0,.45)
        ),
        url('../img/hero/hero.webp')
        center center / cover no-repeat;

    color: rgba(255,255,255,.78);
    overflow: hidden;
}

.legal-page
{
    background: var(--color-white);
}

.legal-content
{
    max-width: 900px;
}

.legal-content h2
{
    margin: 42px 0 16px;
    font-size: 28px;
}

.legal-content h2:first-child
{
    margin-top: 0;
}

.legal-content p
{
    margin-bottom: 18px;
}

.legal-content a
{
    color: var(--color-primary);
    font-weight: 700;
}