/* ===================================
   PRIVACY PAGE
=================================== */

.privacy-section{
    background: #f5f8ff;
}

.privacy-wrapper{
    max-width: 1000px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.privacy-box{
    background: #fff;
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,.06);
    transition: .3s ease;
}

.privacy-box:hover{
    transform: translateY(-5px);
}

.privacy-box h2{
    color: var(--fros-blue-color);
    margin-bottom: 20px;
    font-size: 30px;
}

.privacy-box p{
    color: #555;
    line-height: 1.9;
    margin-bottom: 15px;
}

.privacy-box ul{
    padding-left: 20px;
}

.privacy-box ul li{
    margin-bottom: 10px;
    color: #555;
    line-height: 1.8;
    list-style: disc;
}

.privacy-header{
    padding-top: 300px;
    padding-bottom: 100px;
}

.privacy-header h1{
    font-size: 55px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.privacy-header .lead{
    margin: auto;
    color: rgba(255,255,255,.9);
}

/* RESPONSIVO */
@media(max-width:768px){

    .privacy-header{
        padding-top: 100px;
        padding-bottom: 70px;
    }

    .privacy-header h1{
        font-size: 38px;
    }

    .privacy-box{
        padding: 25px;
        border-radius: 18px;
    }

    .privacy-box h2{
        font-size: 24px;
    }

}