.privacy-section {
  background: #02132d;
  padding: 120px 20px;
  min-height: 100vh;
}

.privacy-section .container {
  max-width: 1100px;
  margin: auto;
}

.policy-card {
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 30px;
  padding: 60px;
  box-shadow: 0 20px 50px rgba(0,0,0,.2);
}

.policy-header {
  text-align: center;
  margin-bottom: 50px;
}

.policy-header h1 {
  color: #fff;
  font-size: 52px;
  font-weight: 800;
  margin-bottom: 10px;
}

.policy-header p {
  color: #9fb5df;
}

.policy-content h2 {
  color: #fff;
  font-size: 28px;
  margin-top: 40px;
  margin-bottom: 20px;
}

.policy-content h3 {
  color: #4ea1ff;
  font-size: 20px;
  margin-top: 25px;
  margin-bottom: 15px;
}

.policy-content p {
  color: #c4d4f5;
  line-height: 1.9;
  margin-bottom: 15px;
}

.policy-content ul {
  margin-left: 25px;
  margin-bottom: 20px;
}

.policy-content li {
  color: #c4d4f5;
  margin-bottom: 10px;
}

@media (max-width:768px) {
  .policy-card {
    padding: 30px;
  }
}

@media (max-width:768px) {
  .policy-header h1 {
    font-size: 38px;
  }
}

