*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial,Helvetica,sans-serif;
    background:#f5f7fa;
    color:#333;
    line-height:1.8;
}

.legal-container{
    max-width:1000px;
    margin:auto;
    background:#fff;
    padding:50px;
    margin-top:50px;
    margin-bottom:50px;
    border-radius:14px;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
}

.legal-header{
    text-align:center;
    margin-bottom:50px;
}

.badge{
    display:inline-block;
    background:#008f5a;
    color:#fff;
    padding:8px 18px;
    border-radius:30px;
    font-size:.85rem;
    margin-bottom:20px;
}

h1{
    font-size:2.3rem;
    margin-bottom:10px;
}

h2{
    margin-top:40px;
    margin-bottom:15px;
    color:#008f5a;
    font-size:1.35rem;
}

p{
    margin-bottom:18px;
    text-align:justify;
}

ul{
    margin-left:25px;
    margin-bottom:20px;
}

li{
    margin-bottom:10px;
}

strong{
    color:#111;
}

a{
    color:#008f5a;
    text-decoration:none;
}

a:hover{
    text-decoration:underline;
}

@media(max-width:768px){

    .legal-container{

        margin:20px;
        padding:30px 22px;

    }

    h1{

        font-size:1.8rem;

    }

    h2{

        font-size:1.2rem;

    }

}