
.policy-page{
  min-height: 70vh;
  padding: 44px 18px 70px;
}

.policy-wrap{
  max-width: 980px;
  margin: 0 auto;
}


.policy-title{
  margin: 0 0 8px;
  font-weight: 900;
  letter-spacing: .4px;
  color: #8ff7ff;
  text-shadow: 0 0 14px rgba(0,255,255,.22);
}

.policy-subtitle{
  margin: 0 0 22px;
  color: rgba(230,241,255,.72);
  line-height: 1.6;
}


.policy-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.policy-card{
  background: rgba(5,5,20,.92);
  border: 1px solid rgba(0,255,255,.20);
  border-radius: 18px;
  padding: 18px 18px 16px;
  box-shadow: 0 0 18px rgba(0,255,255,.10);
  transition: .25s ease;
}

.policy-card:hover{
  transform: translateY(-3px);
  border-color: rgba(0,255,255,.42);
  box-shadow: 0 0 28px rgba(0,255,255,.18);
}

.policy-card h2{
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 900;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 10px;
}

.policy-card h2 .policy-num{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: rgba(0,255,255,.10);
  border: 1px solid rgba(0,255,255,.22);
  color: #8ff7ff;
  font-weight: 900;
  font-size: 13px;
}

.policy-card p,
.policy-card li{
  color: rgba(230,241,255,.78);
  line-height: 1.7;
  font-size: 14px;
}

.policy-card ul{
  margin: 10px 0 0 18px;
}


.policy-actions{
  margin-top: 22px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-neon{
  display: inline-block;
  border: none;
  border-radius: 14px;
  padding: 12px 16px;
  font-weight: 900;
  cursor: pointer;
  background: #00ffff;
  color: #050518;
  box-shadow: 0 0 18px rgba(0,255,255,.25);
  transition: .2s ease;
  text-decoration: none;
  text-align: center;
}

.btn-neon:hover{
  background: #00cfe6;
  box-shadow: 0 0 26px rgba(0,255,255,.35);
}

.btn-ghost{
  display: inline-block;
  border-radius: 14px;
  padding: 12px 16px;
  font-weight: 900;
  cursor: pointer;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(0,255,255,.18);
  color: #e6f1ff;
  transition: .2s ease;
  text-decoration: none;
  text-align: center;
}

.btn-ghost:hover{
  border-color: rgba(0,255,255,.35);
  box-shadow: 0 0 14px rgba(0,255,255,.12);
}


.policy-divider{
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(0,255,255,0),
    rgba(0,255,255,.22),
    rgba(0,255,255,0)
  );
  margin: 18px 0 22px;
}
