/* ==========================
   TERMS & CONDITIONS
========================== */

body{
    background:#f5f8fc;
    font-family:'Segoe UI',sans-serif;
    color:#1f2937;
}

/* Container */

.container{
    max-width:1200px;
}

/* Section */

section{
    padding:70px 0;
}

/* Heading */

.section-title h2{
    font-size:36px;
    font-weight:700;
    color:#0f172a;
    margin-bottom:15px;
}

.section-title p{
    font-size:16px;
    color:#64748b;
    max-width:850px;
    margin:auto;
    line-height:1.8;
}

/* Card */

.terms-card{

    background:#ffffff;

    border-radius:18px;

    padding:30px;

    height:100%;

    transition:.35s;

    box-shadow:0 10px 30px rgba(15,23,42,.08);

    border:1px solid #edf2f7;

}

.terms-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 40px rgba(37,99,235,.15);

}

/* Icon */

.icon{

    width:70px;

    height:70px;

    border-radius:50%;

    background:linear-gradient(135deg,#2563eb,#1d4ed8);

    display:flex;

    justify-content:center;

    align-items:center;

    margin-bottom:20px;

}

.icon i{

    color:#fff;

    font-size:28px;

}

.terms-card h4{

    font-size:22px;

    font-weight:700;

    margin-bottom:15px;

    color:#0f172a;

}

.terms-card p{

    font-size:15px;

    color:#64748b;

    line-height:1.9;

}

/* Headings */

.heading{

    font-size:30px;

    font-weight:700;

    color:#0f172a;

    margin-bottom:25px;

}

/* Table */

.table{

    background:#fff;

    border-radius:18px;

    overflow:hidden;

    box-shadow:0 8px 25px rgba(0,0,0,.08);

}

.table thead th{

    background:#0d6efd !important;

    color:#fff !important;

    text-align:center;

    padding:16px;

    font-size:16px;

}

.table td{

    padding:18px;

    vertical-align:middle;

}

.table tbody tr:hover{

    background:#f8fbff;

}

/* Lists */

.terms-list{

    list-style:none;

    padding:0;

    margin:0;

}

.terms-list li{

    background:#fff;

    margin-bottom:15px;

    padding:18px 20px;

    border-radius:12px;

    box-shadow:0 5px 15px rgba(0,0,0,.05);

    transition:.3s;

    position:relative;

    padding-left:55px;

}

.terms-list li:hover{

    transform:translateX(8px);

}

.terms-list li::before{

    content:"✔";

    position:absolute;

    left:20px;

    top:16px;

    width:24px;

    height:24px;

    background:#2563eb;

    color:#fff;

    border-radius:50%;

    text-align:center;

    line-height:24px;

    font-size:13px;

}

/* Alerts */

.alert{

    border:none;

    border-radius:18px;

    padding:28px;

}

.alert h4{

    font-weight:700;

}

.alert p{

    margin-top:10px;

    line-height:1.8;

}

/* Light Section */

.bg-light{

    background:#f8fafc !important;

}

/* Buttons */

.btn-primary{

    background:#2563eb;

    border:none;

    padding:12px 28px;

    border-radius:10px;

    font-weight:600;

}

.btn-primary:hover{

    background:#1d4ed8;

}

/* Animation */

.terms-card,
.table,
.alert{

    animation:fadeUp .8s ease;

}

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(40px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

/* Responsive */

@media(max-width:991px){

.section-title h2{

    font-size:30px;

}

.heading{

    font-size:26px;

}

.terms-card{

    margin-bottom:20px;

}

.table{

    font-size:14px;

}

}

@media(max-width:576px){

section{

    padding:50px 0;

}

.section-title h2{

    font-size:26px;

}

.section-title p{

    font-size:15px;

}

.heading{

    font-size:22px;

}

.icon{

    width:60px;

    height:60px;

}

.icon i{

    font-size:24px;

}

.terms-card{

    padding:22px;

}

.table td,
.table th{

    padding:12px;

}

}   


