.hero{
    width: 100vw;
    height: 200px;
    display: grid;
}
.hero img{
    width: 100vw;
    height: 200px;
    grid-column: 1;
    grid-row: 1;
    z-index: 1;
    object-fit: cover;
    object-position: top;
}
.hero figcaption{
    grid-column: 1;
    grid-row: 1;
    z-index: 2;
    align-self: center;
    justify-self: center;
}
.hero span{
    display: block;
    font-size: 2.5rem;
    background: var(--clear-color);
    padding: 1rem 5rem;
}


article{
    display: grid;
    gap: 5rem;
}
@media (max-width: 768px){
    article{
        gap: 3rem;
    }
}


.privacy{
    max-width: 960px;
    width: 90%;
    margin: 0 auto;
}
.privacy h3{
    margin: 2rem auto 1rem;
}
.privacy p{
    margin-bottom: 1rem;
}
.privacy ul{
    margin: 1rem auto 2rem;
}


article footer{
    background: var(--accent-color) !important;
    padding: 2rem 0 !important;
    display: flex !important;
    justify-content: center !important;
}