/*
|--------------------------------------------------------------------------
| VALORABANK
| PRIVACY POLICY CSS
|--------------------------------------------------------------------------
*/

.privacy-hero{

    min-height:45vh;

    display:flex;
    align-items:center;

    background:
    linear-gradient(
        rgba(8,31,77,.95),
        rgba(8,31,77,.80)
    ),
    url('../images/legal/privacy-hero.jpg');

    background-size:cover;
    background-position:center;

    color:#fff;

}

.privacy-hero h1{

    font-size:3rem;

    font-weight:800;

}

.privacy-section{

    padding:80px 0;

    background:#f8fafc;

}

/* ==============================
LAYOUT
============================== */

.privacy-wrapper{

    display:flex;

    gap:30px;

}

/* SIDEBAR */

.privacy-sidebar{

    width:280px;

    position:sticky;

    top:100px;

    height:fit-content;

}

.privacy-sidebar a{

    display:block;

    padding:12px 15px;

    margin-bottom:10px;

    border-radius:10px;

    text-decoration:none;

    color:#081F4D;

    background:#fff;

    box-shadow:0 10px 25px rgba(0,0,0,.05);

    transition:.3s;

}

.privacy-sidebar a:hover{

    background:#081F4D;

    color:#fff;

}

/* CONTENT */

.privacy-content{

    flex:1;

    background:#fff;

    padding:40px;

    border-radius:25px;

    box-shadow:0 25px 80px rgba(0,0,0,.08);

}

.privacy-content h2{

    margin-top:30px;

    color:#081F4D;

    font-weight:800;

}

.privacy-content p{

    color:#475569;

    line-height:1.8;

}

/* ==============================
RESPONSIVE
============================== */

@media(max-width:768px){

    .privacy-wrapper{

        flex-direction:column;

    }

    .privacy-sidebar{

        width:100%;

        position:relative;

        top:0;

    }

}