/*=====================================================
POLICY PAGES
=====================================================*/

.policy-header{
    background:#08285f;
    padding:18px 0;
}

.policy-back{
    color:#fff;
    font-weight:600;
    text-decoration:none;
    transition:.3s;
}

.policy-back:hover{
    color:var(--accent);
}

.policy-page{
    padding:80px 0;
    background:#f5f7fb;
}

.policy-container{
    width:min(1100px,92%);
    margin:auto;
}

.policy-card{
    background:#fff;
    padding:60px;
    border-radius:22px;
    box-shadow:0 25px 60px rgba(0,0,0,.08);
}

.policy-card h1{
    font-size:2.5rem;
    color:#08285f;
    margin-bottom:20px;
}

.policy-card h2{
    margin-top:45px;
    margin-bottom:15px;
    color:#08285f;
    font-size:1.45rem;
}

.policy-card p{
    line-height:1.9;
    color:#555;
    margin-bottom:18px;
}

.policy-card ul{
    padding-left:25px;
    margin-bottom:20px;
}

.policy-card li{
    line-height:1.9;
    color:#555;
    margin-bottom:8px;
}

.policy-card strong{
    color:#08285f;
}

@media (max-width:768px){

.policy-page{
    padding:50px 0;
}

.policy-card{
    padding:30px;
}

.policy-card h1{
    font-size:2rem;
}

.policy-card h2{
    font-size:1.25rem;
}

}