/*======================================
  TERMS & CONDITIONS
  SARKARI KAAM
=======================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:#f4f7fb;
    color:#333;
    line-height:1.7;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* Header */

.page-header{
    background:linear-gradient(135deg,#0d6efd,#198754);
    color:#fff;
    text-align:center;
    padding:80px 20px;
}

.page-header h1{
    font-size:42px;
    margin-bottom:15px;
    font-weight:700;
}

.page-header p{
    font-size:18px;
    max-width:750px;
    margin:auto;
    opacity:.95;
}

/* Terms Section */

.terms-section{
    padding:60px 0;
}

.terms-card{
    background:#fff;
    border-left:5px solid #0d6efd;
    border-radius:16px;
    padding:30px;
    margin-bottom:25px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s ease;
}

.terms-card:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 40px rgba(0,0,0,.15);
}

.terms-card h2{
    color:#0d6efd;
    font-size:26px;
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:15px;
}

.terms-card h2 i{
    color:#198754;
}

.terms-card p{
    color:#555;
    font-size:16px;
}

/* Responsive */

@media(max-width:992px){

.page-header h1{
    font-size:36px;
}

.terms-card h2{
    font-size:22px;
}

}

@media(max-width:768px){

.page-header{
    padding:60px 20px;
}

.page-header h1{
    font-size:30px;
}

.page-header p{
    font-size:16px;
}

.terms-section{
    padding:40px 0;
}

.terms-card{
    padding:22px;
}

.terms-card h2{
    font-size:20px;
    flex-wrap:wrap;
}

.terms-card p{
    font-size:15px;
}

}

@media(max-width:480px){

.container{
    width:94%;
}

.page-header h1{
    font-size:26px;
}

.page-header p{
    font-size:15px;
}

.terms-card{
    padding:18px;
}

}