/* Policy pages — shared (same as returnpolicy / terms) */
.policy-hero {
  background: linear-gradient(135deg, #0d1b35 0%, #1a3a6b 60%, #2563a8 100%);
  border-radius: 12px;
  padding: 48px 48px 44px;
  color: #fff;
  margin-bottom: 32px;
  position: relative;
  overflow: hidden;
}
.policy-hero::before {
  content: '';
  position: absolute;
  right: -60px; top: -60px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: rgba(255,255,255,.05);
}
.policy-hero-badge {
  display: inline-block;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .07em;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.policy-hero h1 {
  font-size: 28px;
  font-weight: 800;
  margin: 0 0 10px;
  line-height: 1.25;
}
.policy-hero-meta { font-size: 13px; opacity: .75; margin: 0; }
@media(max-width:767px){
  .policy-hero { padding: 32px 22px 28px; border-radius: 8px; }
  .policy-hero h1 { font-size: 22px; }
}
.policy-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 32px 36px;
  margin-bottom: 20px;
}
.policy-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 2px solid #f1f5f9;
}
.policy-card-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.policy-card-icon.blue   { background: #eff6ff; color: #1e91d0; }
.policy-card-icon.green  { background: #f0fdf4; color: #16a34a; }
.policy-card-icon.orange { background: #fff7ed; color: #ea580c; }
.policy-card-icon.navy   { background: #eef2ff; color: #1a3a6b; }
.policy-card-icon.purple { background: #faf5ff; color: #7c3aed; }
.policy-card-icon.teal   { background: #f0fdfa; color: #0d9488; }
.policy-card-title {
  font-size: 17px;
  font-weight: 700;
  color: #1e293b;
}
.policy-card p {
  font-size: 14px;
  color: #475569;
  line-height: 1.8;
  margin: 0 0 12px;
}
.policy-card p:last-child { margin-bottom: 0; }
.policy-card ul {
  padding-left: 0;
  list-style: none;
  margin: 0;
}
.policy-card ul li {
  font-size: 14px;
  color: #475569;
  line-height: 1.8;
  padding: 6px 0 6px 24px;
  position: relative;
  border-bottom: 1px solid #f8fafc;
}
.policy-card ul li:last-child { border-bottom: none; }
.policy-card ul li::before {
  content: '';
  position: absolute;
  left: 6px; top: 14px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #1e91d0;
}
.policy-info-box {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 10px;
  padding: 18px 22px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.policy-info-box i { color: #1e91d0; font-size: 18px; margin-top: 2px; flex-shrink: 0; }
.policy-info-box p { font-size: 14px; color: #1e3a5f; line-height: 1.7; margin: 0; }
.policy-cta {
  background: linear-gradient(135deg, #f8fafc 0%, #eff6ff 100%);
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 28px 32px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
  margin-top: 8px;
}
.policy-cta p { font-size: 14px; color: #475569; margin: 0; }
.policy-cta a {
  display: inline-flex; align-items: center; gap: 8px;
  background: #1a3a6b; color: #fff;
  padding: 12px 24px; border-radius: 10px;
  font-size: 14px; font-weight: 700;
  text-decoration: none; white-space: nowrap;
}
.policy-cta a:hover { background: #2563a8; color: #fff; text-decoration: none; }
@media(max-width:767px){
  .policy-card { padding: 22px 18px; }
  .policy-cta { padding: 20px 18px; }
  .policy-cta a { width: 100%; justify-content: center; }
}
