*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

body{
background:#f5f7fb;
}

/* HERO */

.privacy-banner{
width:95%;
margin:30px auto;
margin-top:130px;
background-image: url('image/Privacy Policy.png'); 
background-size: cover;      /* full cover */
background-position: center;
/* background:linear-gradient(135deg,#0047ff,#0f7bff); */
border-radius:20px;
padding:60px;
display:flex;
justify-content:space-between;
align-items:center;
color:white;
}

.banner-content{
max-width:500px;
}

.tag{
background:#ffb300;
padding:6px 14px;
border-radius:30px;
font-size:12px;
font-weight:600;
}

.banner-content h1{
font-size:65px;
margin:20px 0;
}

.banner-content p{
font-size:20px;
line-height:1.8;
}

.updated{
margin-top:25px;
font-size:18px;
}

.banner-image img{
width:380px;
}

/* MAIN */

.privacy-container{
width:95%;
margin:auto;
display:grid;
grid-template-columns:2fr 1fr;
gap:30px;
padding-bottom:60px;
}

/* CARDS */

.policy-card{
background:white;
border-radius:15px;
padding:30px;
display:flex;
gap:25px;
margin-bottom:20px;
box-shadow:0 5px 20px rgba(0,0,0,.05);
}

.number{
width:60px;
height:60px;
background:#ff3b6c;
color:white;
border-radius:50%;
display:flex;
justify-content:center;
align-items:center;
font-weight:bold;
flex-shrink:0;
}

.orange{
background:#ff8a00;
}

.green{
background:#1ebc5a;
}

.blue{
background:#1e73ff;
}

.purple{
background:#7b4cff;
}

.pink{
background:#ff4ba0;
}

.teal{
background:#00bfa6;
}

.yellow{
background:#ffb300;
}

.content h3{
font-size:28px;
margin-bottom:12px;
color:#1f2d3d;
}

.content p{
line-height:1.8;
color:#555;
}

/* INFO CARDS (Privacy + WhatsApp) */

.info-cards{
display:flex;
flex-direction:column;
gap:25px;
}

.info-cards .card{
background:white;
border-radius:15px;
padding:25px;
box-shadow:0 5px 20px rgba(0,0,0,.05);
}

.privacy-card .card-content{
display:flex;
justify-content:space-between;
align-items:center;
gap:15px;
}

.privacy-card .text h2{
font-size:22px;
color:#1f2d3d;
margin-bottom:10px;
}

.privacy-card .text h2 span{
color:#0047ff;
}

.privacy-card .text p{
font-size:14px;
color:#666;
line-height:1.6;
}

.privacy-card .line{
width:40px;
height:4px;
background:#0047ff;
border-radius:5px;
margin-top:15px;
}

.privacy-card .image-box img{
width:80px;
height:80px;
object-fit:contain;
flex-shrink:0;
}

.whatsapp-card{
background:#eafaf0 !important;
text-align:center;
}

.whatsapp-card .card-content{
display:flex;
flex-direction:column;
align-items:center;
gap:10px;
}

.whatsapp-card .image-box img{
width:60px;
height:60px;
object-fit:contain;
margin-bottom:10px;
}

.whatsapp-card h3{
font-size:18px;
color:#1f2d3d;
}

.whatsapp-card .btn{
display:inline-block;
margin-top:15px;
padding:12px 28px;
background:#25d366;
color:white;
text-decoration:none;
border-radius:40px;
font-weight:600;
font-size:14px;
}

/* SIDEBAR */

.sidebar{
position:sticky;
top:30px;
height:max-content;
}

.toc{
background:white;
border-radius:15px;
overflow:hidden;
margin-bottom:25px;
box-shadow:0 5px 20px rgba(0,0,0,.05);
}

.toc h2{
background:#0047ff;
color:white;
padding:20px;
}

.toc ul{
list-style:none;
padding:20px;
}

.toc li{
padding:14px 0;
border-bottom:1px solid #eee;
font-size:15px;
}

.privacy-box{
background:white;
padding:30px;
border-radius:15px;
margin-bottom:25px;
box-shadow:0 5px 20px rgba(0,0,0,.05);
}

.privacy-box h3{
font-size:30px;
color:#0047ff;
margin-bottom:15px;
}

.whatsapp-box{
background:#eafaf0;
padding:30px;
text-align:center;
border-radius:15px;
}

.whatsapp-box i{
font-size:60px;
color:#25d366;
margin-bottom:15px;
}

.whatsapp-box h4{
font-size:24px;
margin-bottom:20px;
}

.whatsapp-box a{
display:inline-block;
padding:14px 30px;
background:#25d366;
color:white;
text-decoration:none;
border-radius:40px;
font-weight:600;
}

/* MOBILE */

@media(max-width:992px){

.privacy-banner{
flex-direction:column;
text-align:center;
padding:40px;
margin-top:110px;
}

.banner-content{
max-width:100%;
}

.banner-content h1{
font-size:42px;
}

.banner-content p{
font-size:16px;
}

.banner-image img{
width:240px;
margin-top:25px;
}

.privacy-container{
grid-template-columns:1fr;
padding-bottom:40px;
}

.sidebar{
position:relative;
}

.policy-card{
flex-direction:column;
text-align:center;
padding:22px;
}

.number{
margin:0 auto;
}

.content h3{
font-size:22px;
}

.content p{
font-size:14px;
text-align:left;
}

.toc h2{
font-size:18px;
padding:16px;
}

.toc li{
font-size:14px;
padding:12px 0;
}

.privacy-card .card-content{
flex-direction:column;
text-align:center;
}

.privacy-card .image-box img{
margin-top:10px;
}

}

@media(max-width:480px){

.privacy-banner{
width:92%;
margin-top:100px;
padding:25px;
}

.banner-content h1{
font-size:32px;
margin:14px 0;
}

.banner-content p{
font-size:15px;
line-height:1.6;
}

.tag{
font-size:11px;
padding:5px 12px;
}

.banner-image img{
width:180px;
}

.privacy-container{
width:92%;
}

.policy-card{
padding:18px;
gap:15px;
}

.number{
width:48px;
height:48px;
font-size:14px;
}

.content h3{
font-size:19px;
}

.content p{
font-size:13.5px;
line-height:1.7;
}

}