
:root{
    --primary:#f59e0b;
    --dark:#1f2937;
    --light:#f8fafc;
    --text:#475569;
    --white:#ffffff;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    background:linear-gradient(135deg,#f8fafc,#ffffff);
}

.terms-section{
    padding:100px 20px;
}

.container{
    max-width:1300px;
    margin:auto;
}

.page-header{
    text-align:center;
    margin-bottom:60px;
}

.badge{
    display:inline-block;
    background:rgba(245,158,11,.12);
    color:var(--primary);
    padding:10px 22px;
    border-radius:50px;
    font-weight:600;
    margin-bottom:20px;
}

.page-header h1{
    font-size:52px;
    color:var(--dark);
    margin-bottom:20px;
}

.page-header p{
    max-width:750px;
    margin:auto;
    color:var(--text);
    line-height:1.8;
}

.terms-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.terms-card{
    background:rgba(255,255,255,.85);
    backdrop-filter:blur(15px);
    border:1px solid rgba(255,255,255,.4);
    border-radius:25px;
    padding:35px;
    box-shadow:0 20px 40px rgba(0,0,0,.06);
    transition:.4s;
}

.terms-card:hover{
    transform:translateY(-8px);
}

.card-icon{
    width:70px;
    height:70px;
    border-radius:18px;
    background:linear-gradient(135deg,#f59e0b,#ffbe3d);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    margin-bottom:25px;
    color:#fff;
}

.terms-card h2{
    color:var(--dark);
    margin-bottom:20px;
    font-size:24px;
}

.terms-card p{
    color:var(--text);
    line-height:1.9;
}

.terms-card ul{
    list-style:none;
}

.terms-card ul li{
    position:relative;
    padding-left:28px;
    margin-bottom:14px;
    color:var(--text);
}

.terms-card ul li::before{
    content:"✓";
    position:absolute;
    left:0;
    color:var(--primary);
    font-weight:700;
}

.billing-box{
    margin-top:20px;
    background:#fff8eb;
    border-left:4px solid var(--primary);
    padding:18px;
    border-radius:12px;
    font-weight:700;
    color:var(--dark);
}

.highlight-box{
    margin-top:20px;
    background:#fff8eb;
    border-left:4px solid var(--primary);
    padding:20px;
    border-radius:12px;
    line-height:1.8;
}

.full-width{
    grid-column:span 2;
}

@media(max-width:991px){

    .page-header h1{
        font-size:42px;
    }

    .terms-grid{
        grid-template-columns:1fr;
    }

    .full-width{
        grid-column:span 1;
    }

}

@media(max-width:768px){

    .terms-section{
        padding:70px 15px;
    }

    .page-header h1{
        font-size:34px;
    }

    .terms-card{
        padding:25px;
    }

}

@media(max-width:480px){

    .page-header h1{
        font-size:28px;
    }

    .card-icon{
        width:60px;
        height:60px;
        font-size:24px;
    }

    .terms-card h2{
        font-size:20px;
    }

}

