@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

body{
background:#f8f9fc;
color:#1f2937;
line-height:1.7;
}

.container{
max-width:1200px;
margin:auto;
padding:0 20px;
}

/* HERO */

.terms-hero{
background:linear-gradient(135deg,#132f7e,#4b39ff,#0fa5d8);
padding:90px 20px;
text-align:center;
color:#fff;
}

.terms-hero h1{
font-size:48px;
font-weight:700;
margin-bottom:15px;
}

.terms-hero p{
font-size:18px;
max-width:800px;
margin:auto;
}

/* CARD */

.terms-wrapper{
max-width:1200px;
margin:-60px auto 80px;
padding:0 20px;
}

.terms-card{
background:#fff;
padding:60px;
border-radius:24px;
box-shadow:0 15px 45px rgba(0,0,0,0.08);
}

.terms-meta{
display:flex;
gap:25px;
flex-wrap:wrap;
padding:18px 25px;
background:#eef4ff;
border-radius:14px;
margin-bottom:35px;
font-weight:500;
}

/* SECTIONS */

.terms-section{
margin-top:45px;
}

.terms-section h2{
font-size:28px;
color:#132f7e;
margin-bottom:18px;
padding-left:18px;
position:relative;
}

.terms-section h2::before{
content:'';
position:absolute;
left:0;
top:6px;
width:8px;
height:30px;
border-radius:10px;
background:#ff8f1f;
}

.terms-section p{
margin-bottom:16px;
color:#4b5563;
}

.terms-section ul{
padding-left:22px;
}

.terms-section li{
margin-bottom:12px;
color:#4b5563;
}

/* CONTACT */

.contact-box{
background:#fff7ec;
border-left:6px solid #ff8f1f;
padding:25px;
border-radius:18px;
margin-top:20px;
}

.contact-box h3{
margin-bottom:12px;
color:#132f7e;
}

/* FOOTER */

.terms-footer{
background:#132f7e;
color:white;
text-align:center;
padding:25px;
}

/* TABLET */

@media(max-width:991px){

.terms-hero h1{
font-size:38px;
}

.terms-card{
padding:40px;
}

.terms-section h2{
font-size:24px;
}

}

/* MOBILE */

@media(max-width:768px){

.terms-hero{
padding:70px 20px;
}

.terms-hero h1{
font-size:30px;
}

.terms-hero p{
font-size:15px;
}

.terms-wrapper{
margin-top:-35px;
}

.terms-card{
padding:25px;
border-radius:18px;
}

.terms-meta{
font-size:14px;
padding:15px;
gap:12px;
}

.terms-section h2{
font-size:21px;
}

.terms-section p,
.terms-section li{
font-size:15px;
}

.contact-box{
padding:18px;
}

}