/* ===== Terms Page ===== */

.terms-page{
    background:#f5f5f5;
    padding-bottom:80px;
}

.terms-header{
    background:#1f2433;
    padding:100px 20px;
    text-align:center;
    position:relative;
    overflow:hidden;
}

.terms-header::before{
    content:'';
    position:absolute;
    width:100%;
    height:100%;
    top:0;
    left:0;
    background:
    radial-gradient(circle at top left, rgba(255,255,255,0.05), transparent 30%),
    radial-gradient(circle at bottom right, rgba(255,255,255,0.05), transparent 30%);
}

.terms-logo{
    width:120px;
    margin-bottom:15px;
}

.terms-header h1{
    color:#fff;
    font-size:38px;
    font-weight:700;
    margin-bottom:10px;
}

.terms-header p{
    color:#d7d7d7;
    font-size:16px;
}

.terms-container{
    max-width:1000px;
    margin:auto;
    padding:50px 20px;
}

.terms-box{
    background:#fff;
    border-radius:18px;
    padding:35px;
    margin-bottom:30px;
    box-shadow:0 8px 30px rgba(0,0,0,0.06);
    border:1px solid #eee;
    transition:.3s;
}

.terms-box:hover{
    transform:translateY(-5px);
}

.section-title{
    background:#ececf1;
    color:#1f2433;
    padding:14px 20px;
    border-right:5px solid #c7a86b;
    border-radius:10px;
    font-size:24px;
    font-weight:700;
    margin-bottom:25px;
}

.terms-box h3{
    color:#1f2433;
    font-size:20px;
    margin-bottom:10px;
    margin-top:20px;
}

.terms-box p{
    color:#555;
    font-size:17px;
    line-height:2;
}

@media(max-width:768px){

    .terms-header h1{
        font-size:28px;
    }

    .section-title{
        font-size:20px;
    }

    .terms-box{
        padding:25px;
    }

}