/* ===== POLICY PAGE ===== */

body{
  font-family: Inter, system-ui, Arial;
  background:#f8fafc;
  margin:0;
  color:#0f172a;
}

/* container */

.policy-wrapper{
  max-width:900px;
  margin:80px auto;
  padding:40px;
  background:white;
  border-radius:16px;
  box-shadow:0 20px 40px rgba(0,0,0,0.08);
}

/* header */

.policy-header{
  margin-bottom:30px;
}

.policy-header h1{
  font-size:2rem;
  font-weight:800;
  margin-bottom:10px;
}

.policy-header p{
  color:#64748b;
}

/* sections */

.policy-content h6{
  margin-top:22px;
  font-weight:700;
  font-size:1.05rem;
}

.policy-content p{
  color:#475569;
  line-height:1.7;
}

/* back button */

.back-home{
  display:inline-block;
  margin-bottom:25px;
  padding:10px 18px;
  border-radius:8px;
  background:#6366f1;
  color:white;
  text-decoration:none;
  font-weight:600;
}

.back-home:hover{
  background:#4f46e5;
}

/* footer */

.policy-footer{
  margin-top:30px;
  border-top:1px solid #e2e8f0;
  padding-top:15px;
  font-size:0.9rem;
  color:#64748b;
}

@media(max-width:768px){

  .policy-wrapper{
    margin:40px 15px;
    padding:25px;
  }

}