
/* ===== TERMS PAGE ===== */
.terms-page{
    background:#f8fafc;
    padding:60px 0;
    position:relative;
    overflow:hidden;
}

.terms-page::before{
    content:'';
    position:absolute;
    width:420px;
    height:420px;
    background:rgba(230,57,70,0.05);
    border-radius:50%;
    top:-180px;
    right:-120px;
}

.terms-page::after{
    content:'';
    position:absolute;
    width:320px;
    height:320px;
    background:rgba(29,53,87,0.05);
    border-radius:50%;
    bottom:-120px;
    left:-80px;
}

.terms-wrapper{
    background:#fff;
    border-radius:28px;
    padding:50px;
    box-shadow:0 10px 40px rgba(0,0,0,0.06);
    position:relative;
    z-index:2;
}

.terms-heading{
    margin-bottom:40px;
    text-align:center;
}

.terms-heading span{
    color:#e63946;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
    font-size:13px;
}

.terms-heading h1{
    font-size:3rem;
    font-weight:800;
    margin-top:10px;
    color:#111827;
}

.terms-heading h1 strong{
    color:#e63946;
}

.terms-updated{
    color:#666;
    font-size:14px;
    margin-top:10px;
}

.terms-intro{
    max-width:900px;
    margin:auto;
    color:#555;
    line-height:1.8;
    font-size:16px;
}

.terms-section{
    margin-top:40px;
    padding-top:30px;
    border-top:1px solid #eee;
}

.terms-section:first-of-type{
    border-top:none;
    padding-top:0;
}

.terms-section h3{
    font-size:1.6rem;
    font-weight:800;
    color:#111827;
    margin-bottom:18px;
}

.terms-section p{
    color:#555;
    line-height:1.9;
    margin-bottom:15px;
}

.terms-section ul{
    padding-left:20px;
    margin:0;
}

.terms-section ul li{
    margin-bottom:12px;
    color:#444;
    line-height:1.8;
}

.contact-box{
    background:#fff5f5;
    border:1px solid #ffd9dc;
    border-radius:20px;
    padding:25px;
    margin-top:20px;
}

.contact-box h5{
    font-weight:800;
    margin-bottom:10px;
    color:#111827;
}

.contact-box p{
    margin-bottom:6px;
}

.contact-box a{
    color:#e63946;
    font-weight:700;
    text-decoration:none;
}

.contact-box a:hover{
    text-decoration:underline;
}

@media(max-width:991px){

    .terms-wrapper{
        padding:35px;
    }

    .terms-heading h1{
        font-size:2.3rem;
    }

    .terms-section h3{
        font-size:1.4rem;
    }
}

@media(max-width:767px){

    .terms-page{
        padding:40px 0;
    }

    .terms-wrapper{
        padding:22px;
        border-radius:20px;
    }

    .terms-heading h1{
        font-size:1.8rem;
    }

    .terms-intro{
        font-size:14px;
    }

    .terms-section h3{
        font-size:1.2rem;
    }

    .terms-section p,
    .terms-section ul li{
        font-size:14px;
    }
}


