/*==================================================
PRIVACY POLICY
==================================================*/

.policy-hero{
    position:relative;
    padding:110px 0 90px;
    background:linear-gradient(135deg,#0d3568,#071f3f);
    overflow:hidden;
}

.policy-hero::before{
    content:"";
    position:absolute;
    top:-120px;
    right:-120px;
    width:320px;
    height:320px;
    border-radius:50%;
    background:rgba(200,155,60,.12);
}

.policy-hero::after{
    content:"";
    position:absolute;
    bottom:-120px;
    left:-120px;
    width:260px;
    height:260px;
    border-radius:50%;
    background:rgba(255,255,255,.05);
}

.policy-hero-content{
    position:relative;
    z-index:2;
    max-width:820px;
}

.policy-badge{
    display:inline-block;
    padding:8px 18px;
    border-radius:40px;
    background:#C89B3C;
    color:#fff;
    font-size:14px;
    font-weight:600;
    margin-bottom:18px;
}

.policy-badge h1{

    color:#C89B3C !important;

}

.policy-hero h1{
    color:#C89B3C !important;
    font-size:52px;
    font-weight:700;
    margin-bottom:20px;
}

.policy-hero p{
    color:rgba(255,255,255,.88);
    font-size:18px;
    line-height:1.8;
    margin-bottom:28px;
}

.policy-breadcrumb{
    display:flex;
    align-items:center;
    gap:12px;
    flex-wrap:wrap;
}

.policy-breadcrumb a{
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.policy-breadcrumb a:hover{
    color:#C89B3C;
}

.policy-breadcrumb span{
    color:#d8d8d8;
}

.policy-content-section{
    padding:90px 0;
    background:#f8fafc;
}

.policy-card{
    background:#fff;
    border-radius:18px;
    box-shadow:0 15px 45px rgba(0,0,0,.08);
    padding:45px;
}

.policy-meta{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    padding-bottom:22px;
    margin-bottom:35px;
    border-bottom:1px solid #e6e6e6;
}

.policy-date{
    color:#666;
    font-size:15px;
}

.policy-date i{
    color:#C89B3C;
    margin-right:8px;
}

.policy-date strong{
    color:#0d3568;
}

.policy-content{
    color:#555;
    font-size:17px;
    line-height:1.95;
}

.policy-content h1,
.policy-content h2,
.policy-content h3,
.policy-content h4,
.policy-content h5,
.policy-content h6{
    color:#0d3568;
    margin-top:40px;
    margin-bottom:18px;
    font-weight:700;
}

.policy-content p{
    margin-bottom:18px;
    color: #555;
}

.policy-content ul,
.policy-content ol{
    margin-bottom:22px;
    padding-left:22px;
}

.policy-content li{
    margin-bottom:10px;
}

.policy-content a{
    color:#0d3568;
    font-weight:600;
    text-decoration:none;
}

.policy-content a:hover{
    color:#C89B3C;
}

.policy-content blockquote{
    margin:30px 0;
    padding:22px 28px;
    border-left:5px solid #C89B3C;
    background:#faf8f1;
    border-radius:10px;
    font-style:italic;
}

.policy-content table{
    width:100%;
    border-collapse:collapse;
    margin:30px 0;
    overflow:auto;
    display:block;
}

.policy-content table th{
    background:#0d3568;
    color:#fff;
}

.policy-content table th,
.policy-content table td{
    padding:14px;
    border:1px solid #ddd;
}

.policy-content img{
    max-width:100%;
    height:auto;
    border-radius:12px;
    margin:20px 0;
}

.policy-content hr{
    margin:40px 0;
}

/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:991px){

    .policy-hero{
        padding:90px 0 70px;
    }
    
    .policy-hero h1{
        font-size:40px;
    }
    
    .policy-card{
        padding:35px;
    }
    
    }
    
    @media(max-width:767px){
    
    .policy-hero{
        padding:70px 0 60px;
        text-align:center;
    }
    
    .policy-hero-content{
        max-width:100%;
    }
    
    .policy-badge{
        font-size:13px;
    }
    
    .policy-hero h1{
        font-size:32px;
        line-height:1.3;
    }
    
    .policy-hero p{
        font-size:16px;
    }
    
    .policy-breadcrumb{
        justify-content:center;
    }
    
    .policy-content-section{
        padding:60px 0;
    }
    
    .policy-card{
        padding:22px;
        border-radius:14px;
    }
    
    .policy-meta{
        justify-content:center;
        text-align:center;
        gap:10px;
    }
    
    .policy-content{
        font-size:15px;
        line-height:1.9;
    }
    
    .policy-content h2{
        font-size:25px;
    }
    
    .policy-content h3{
        font-size:22px;
    }
    
    .policy-content table{
        font-size:14px;
    }
    
    }
    
    @media(max-width:480px){
    
    .policy-hero h1{
        font-size:28px;
    }
    
    .policy-hero p{
        font-size:15px;
    }
    
    .policy-card{
        padding:18px;
    }
    
    .policy-content{
        font-size:14px;
    }
    
    .policy-content h2{
        font-size:22px;
    }
    
    .policy-content h3{
        font-size:20px;
    }
    
    }