body{
margin:0;
font-family:Arial, Helvetica, sans-serif;
background:#f5f7fb;
color:#333;
}


/* HERO */

.legal-hero{
background:linear-gradient(135deg,#1a2a6c,#b21f1f,#fdbb2d);
color:white;
padding:80px 20px;
text-align:center;
}

.legal-hero h1{
font-size:42px;
margin-bottom:15px;
}

.legal-hero p{
font-size:18px;
max-width:800px;
margin:auto;
line-height:1.6;
}



/* CONTAINER */

.legal-container{
max-width:1100px;
margin:auto;
padding:60px 20px;
}



/* CARDS */

.legal-card{
background:white;
padding:30px;
margin-bottom:25px;
border-radius:10px;
box-shadow:0 6px 20px rgba(0,0,0,0.08);
transition:0.3s;
}

.legal-card:hover{
transform:translateY(-6px);
box-shadow:0 10px 25px rgba(0,0,0,0.12);
}

.legal-card h2{
color:#222;
margin-bottom:15px;
font-size:22px;
}

.legal-card p{
line-height:1.7;
color:#444;
}

.legal-card ul{
padding-left:20px;
}

.legal-card ul li{
margin-bottom:8px;
}



/* HIGHLIGHT */

.highlight{
background:#fff3cd;
padding:3px 6px;
border-radius:4px;
font-weight:bold;
}



/* IMPORTANT */

.important{
color:#b30000;
font-weight:bold;
margin-top:10px;
}



/* WARNING */

.legal-warning{
margin-top:40px;
background:#ffeaea;
border-left:6px solid red;
padding:30px;
font-size:18px;
border-radius:8px;
box-shadow:0 5px 15px rgba(0,0,0,0.1);
}






/* MOBILE */

@media(max-width:768px){

.legal-hero h1{
font-size:30px;
}

.legal-card{
padding:20px;
}

}


/* TOP BACK BUTTON */

.top-back-btn{
position:absolute;
top:25px;
left:40px;
z-index:999;
}

.top-back-btn a{
text-decoration:none;
color:white;
font-size:15px;
font-weight:600;
padding:10px 20px;
border-radius:40px;
background:rgba(255,255,255,0.15);
backdrop-filter:blur(6px);
border:1px solid rgba(255,255,255,0.3);
transition:0.3s;
}

.top-back-btn a:hover{
background:white;
color:#222;
transform:translateY(-2px);
}