*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

body{
background:#fffaf5;
color:#3d2b1f;
overflow-x:hidden;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}


/* HERO */

.privacy-hero{
position:relative;
padding:150px 0 110px;
background:
linear-gradient(
135deg,
#d7b794,
#eddcc8
);
overflow:hidden;
text-align:center;
}

.hero-content{
position:relative;
z-index:2;
}

.home-btn{
display:inline-flex;
align-items:center;
gap:10px;
padding:14px 26px;
border-radius:60px;
background:white;
text-decoration:none;
font-weight:700;
color:#5c4033;
margin-bottom:35px;
transition:.4s;
box-shadow:
0 15px 35px rgba(0,0,0,.08);
}

.home-btn:hover{
transform:
translateY(-5px);
}

.hero-content h1{
font-size:72px;
line-height:1.1;
margin-bottom:25px;
font-weight:800;
color:#4e3423;
}

.hero-content p{
max-width:850px;
margin:auto;
font-size:20px;
line-height:1.9;
color:#6f5848;
}


/* FLOATING */

.floating-circle{
position:absolute;
border-radius:50%;
background:rgba(255,255,255,.25);
animation:float 8s infinite ease-in-out;
}

.one{
width:260px;
height:260px;
top:-80px;
right:-60px;
}

.two{
width:180px;
height:180px;
bottom:30px;
left:-40px;
animation-delay:2s;
}

@keyframes float{

0%,100%{
transform:translateY(0);
}

50%{
transform:translateY(-25px);
}

}


/* POLICY */

.policy-section{
padding:110px 0;
}

.policy-wrapper{
display:grid;
grid-template-columns:
repeat(2,1fr);
gap:35px;
}

.policy-card{
background:white;
padding:45px 38px;
border-radius:35px;
transition:.45s;
box-shadow:
0 20px 50px rgba(0,0,0,.06);
}

.policy-card:hover{
transform:
translateY(-10px);
}

.policy-card h2{
font-size:32px;
margin-bottom:18px;
color:#5c4033;
}

.policy-card p{
font-size:17px;
line-height:1.9;
color:#6f5a4a;
}


/* FOOTER */

.privacy-footer{
padding:120px 0;
text-align:center;
background:
linear-gradient(
135deg,
#d6b48d,
#ecd8bf
);
}

.privacy-footer h2{
font-size:58px;
line-height:1.3;
margin-bottom:40px;
color:#4e3423;
}

.footer-home-btn{
display:inline-flex;
align-items:center;
gap:12px;
padding:18px 34px;
border-radius:60px;
background:white;
text-decoration:none;
font-weight:700;
color:#5c4033;
transition:.4s;
box-shadow:
0 15px 35px rgba(0,0,0,.08);
}

.footer-home-btn:hover{
transform:
translateY(-6px);
}


/* MOBILE */

@media(max-width:1000px){

.policy-wrapper{
grid-template-columns:1fr;
}

.hero-content h1{
font-size:54px;
}

.privacy-footer h2{
font-size:42px;
}

}

@media(max-width:768px){

.privacy-hero{
padding:130px 0 90px;
}

.hero-content h1{
font-size:38px;
}

.hero-content p{
font-size:16px;
}

.policy-card{
padding:35px 25px;
}

.policy-card h2{
font-size:25px;
}

.policy-card p{
font-size:15px;
}

.privacy-footer h2{
font-size:32px;
}

.footer-home-btn{
padding:16px 28px;
font-size:15px;
}

}