*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

:root{
  --primary:#7A3DB8;
  --dark:#1F1B2E;
  --accent:#D4AF37;
  --white:#ffffff;
  --light:#F8F8FA;
  --soft:#F3EEF8;
  --text:#555555;
  --shadow:0 12px 35px rgba(31,27,46,0.08);
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Poppins', sans-serif;
  background:var(--light);
  color:var(--dark);
  line-height:1.8;
}

a{
  text-decoration:none;
}

.container{
  width:90%;
  max-width:1100px;
  margin:auto;
}

/* HEADER */
.privacy-header{
  background:linear-gradient(135deg,var(--dark),var(--primary));
  color:var(--white);
  text-align:center;
  padding:80px 20px 70px;
  position:relative;
  overflow:hidden;
}

.privacy-header::before{
  content:"";
  position:absolute;
  width:280px;
  height:280px;
  border:1px solid rgba(255,255,255,0.08);
  border-radius:50%;
  top:-120px;
  left:-80px;
}

.privacy-header::after{
  content:"";
  position:absolute;
  width:220px;
  height:220px;
  border:1px solid rgba(255,255,255,0.08);
  border-radius:50%;
  bottom:-90px;
  right:-60px;
}

.privacy-header .container{
  position:relative;
  z-index:2;
}

.privacy-badge{
  display:inline-block;
  padding:8px 18px;
  border:1px solid rgba(255,255,255,0.18);
  border-radius:30px;
  color:var(--accent);
  font-size:13px;
  letter-spacing:1px;
  text-transform:uppercase;
  margin-bottom:18px;
}

.privacy-header h1{
  font-size:42px;
  margin-bottom:14px;
  font-weight:700;
}

.privacy-header p{
  max-width:760px;
  margin:auto;
  color:rgba(255,255,255,0.88);
  font-size:16px;
}

/* MAIN */
.privacy-main{
  padding:70px 0;
}

.privacy-card{
  background:var(--white);
  border-radius:24px;
  padding:40px 35px;
  box-shadow:0 12px 35px rgba(31,27,46,0.08);
  border:1px solid rgba(31,27,46,0.05);
}

.privacy-card h1{
  font-size:36px;
  margin-bottom:14px;
  color:var(--dark);
}

.privacy-card h2{
  font-size:28px;
  margin-top:34px;
  margin-bottom:16px;
  color:var(--dark);
  position:relative;
  padding-left:16px;
}

.privacy-card h2::before{
  content:"";
  position:absolute;
  left:0;
  top:8px;
  width:5px;
  height:28px;
  border-radius:10px;
  background:linear-gradient(var(--primary),var(--accent));
}

.privacy-card h3{
  font-size:22px;
  margin-top:22px;
  margin-bottom:10px;
  color:var(--primary);
}

.privacy-card h4{
  font-size:18px;
  margin-top:18px;
  margin-bottom:8px;
  color:var(--dark);
}

.privacy-card p{
  color:var(--text);
  font-size:15px;
  margin-bottom:12px;
}

.privacy-card ul{
  padding-left:22px;
  margin-bottom:14px;
}

.privacy-card ul li{
  color:var(--text);
  margin-bottom:10px;
}

.privacy-card strong{
  color:var(--dark);
}

/* FOOTER */
.privacy-footer{
  background:linear-gradient(135deg,var(--dark),var(--primary));
  color:var(--white);
  padding:22px 0;
  margin-top:30px;
}

.privacy-footer-wrap{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:15px;
  flex-wrap:wrap;
}

.privacy-footer p{
  color:rgba(255,255,255,0.86);
  font-size:14px;
}

.privacy-footer-links{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}

.privacy-footer-links a{
  color:#fff;
  font-size:14px;
  transition:0.3s ease;
  position:relative;
}

.privacy-footer-links a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-3px;
  width:0;
  height:2px;
  background:var(--accent);
  transition:0.3s ease;
}

.privacy-footer-links a:hover{
  color:var(--accent);
}

.privacy-footer-links a:hover::after{
  width:100%;
}

.privacy-footer-links span{
  color:rgba(255,255,255,0.75);
}

/* RESPONSIVE */
@media (max-width:768px){
  .privacy-header{
    padding:60px 16px 55px;
  }

  .privacy-header h1{
    font-size:32px;
  }

  .privacy-header p{
    font-size:15px;
  }

  .privacy-main{
    padding:45px 0;
  }

  .privacy-card{
    padding:26px 18px;
  }

  .privacy-card h1{
    font-size:28px;
  }

  .privacy-card h2{
    font-size:23px;
  }

  .privacy-card h3{
    font-size:19px;
  }

  .privacy-card h4{
    font-size:17px;
  }

  .privacy-footer-wrap{
    flex-direction:column;
    text-align:center;
  }
}