.policy-container{
    max-width:1200px;
    margin:80px auto;
    padding:0 20px;
}

.policy-card{
    background:rgba(255,255,255,0.85);
    backdrop-filter:blur(20px);
    border:1px solid rgba(255,255,255,0.3);
    border-radius:25px;
    padding:50px;
    box-shadow:0 20px 60px rgba(0,0,0,.08);
    overflow:hidden;
    position:relative;
}

.policy-card::before{
    content:'';
    position:absolute;
    top:-150px;
    right:-150px;
    width:300px;
    height:300px;
    background:#f59e0b;
    opacity:.08;
    border-radius:50%;
}

.policy-card::after{
    content:'';
    position:absolute;
    bottom:-120px;
    left:-120px;
    width:250px;
    height:250px;
    background:#1f2937;
    opacity:.05;
    border-radius:50%;
}

.heading{
    font-size:42px;
    font-weight:700;
    color:#1f2937;
    margin-bottom:10px;
    position:relative;
    z-index:2;
}

.heading span{
    color:#f59e0b;
}

.subheading{
    color:#64748b;
    font-size:16px;
    margin-bottom:40px;
    position:relative;
    z-index:2;
    line-height:1.8;
}

.policy-section{
    background:#fff;
    padding:35px;
    border-radius:20px;
    margin-bottom:25px;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
    position:relative;
    z-index:2;
    transition:all .4s ease;
}

.policy-section:hover{
    transform:translateY(-5px);
}

.section-header{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:20px;
}

.icon{
    width:55px;
    height:55px;
    background:linear-gradient(135deg,#f59e0b,#ffb300);
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:15px;
    font-size:24px;
    color:#fff;
    box-shadow:0 10px 25px rgba(245,158,11,.3);
}

.section-title{
    font-size:24px;
    font-weight:600;
    color:#1f2937;
}

.policy-text{
    font-size:16px;
    line-height:1.9;
    color:#475569;
}

.highlight{
    background:#fff8eb;
    padding:18px;
    border-left:4px solid #f59e0b;
    border-radius:10px;
    margin-top:15px;
}

.highlight strong{
    color:#1f2937;
}

/* Tablet */

@media(max-width:768px){

    .policy-card{
        padding:30px 20px;
    }

    .heading{
        font-size:32px;
    }

    .policy-section{
        padding:25px;
    }

    .section-title{
        font-size:20px;
    }

    .icon{
        width:48px;
        height:48px;
        font-size:20px;
    }

    .policy-text{
        font-size:15px;
    }

}

/* Mobile */

@media(max-width:480px){

    .heading{
        font-size:28px;
    }

    .subheading{
        font-size:14px;
    }

    .section-header{
        flex-direction:column;
        align-items:flex-start;
    }

}