:root{
  --sahel-blue: #0b74d3;
  --sahel-dark: #053a57;
  --sahel-sand: #faf3e8;
  --muted: #6c757d;
  --max-width: 920px;
  --radius: 12px;
}

/* Container card spécifique (évite d'impacter d'autres cards Bootstrap) */
.card.policy-card{
  max-width: var(--max-width);
  margin: 2rem auto;
  border: none;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  box-shadow: 0 10px 30px rgba(10,25,40,0.08);
}

/* Corps */
.card.policy-card .card-body{
  padding: 2.5rem;
}

/* En-tête */
.policy-header{
  text-align: center;
  margin-bottom: 1.25rem;
}
.policy-header h1{
  color: var(--sahel-blue);
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  margin-bottom: 0.15rem;
  font-weight: 700;
  letter-spacing: 0.2px;
}
.policy-header h5{
  color: var(--muted);
  margin-bottom: 1rem;
  font-weight: 500;
}

/* Sections */
.policy-section{
  margin-bottom: 1.25rem;
}
.policy-section h3{
  font-size: 1.05rem;
  color: var(--sahel-dark);
  margin-bottom: 0.5rem;
  font-weight: 600;
  padding-left: 0.9rem;
  position: relative;
}
.policy-section h3::before{
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 5px;
  height: calc(100% - 8px);
  background: var(--sahel-blue);
  border-radius: 4px;
}
.policy-section p,
.policy-section li{
  color: #222;
  line-height: 1.6;
  font-size: 0.98rem;
}

/* Listes */
.policy-card .card-body ul{
  margin-left: 1.05rem;
  padding-left: 0.4rem;
  list-style: disc;
}
.policy-card .card-body li{
  margin-bottom: 0.45rem;
}
.policy-card .card-body li::marker{
  color: var(--sahel-blue);
}

/* Contact box */
.contact-info{
  background: var(--sahel-sand);
  border-radius: 8px;
  padding: 0.85rem 1rem;
  display: inline-block;
  margin-top: 0.5rem;
  color: var(--sahel-dark);
  font-weight: 500;
}
.contact-info a{
  color: var(--sahel-dark);
  text-decoration: underline;
}

/* Links */
.policy-card a{
  color: var(--sahel-blue);
  text-decoration: underline;
}
.policy-card a:hover{
  color: var(--sahel-dark);
  text-decoration: none;
}

/* Petit style pour la liste non-ordonnée d'adresse */
.list-unstyled li{
  margin-bottom: 0.35rem;
}

/* Responsive */
@media (max-width: 576px){
  .card.policy-card .card-body{ padding: 1.25rem; }
  .policy-header h1{ font-size: 1.25rem; }
  .policy-section h3{ font-size: 1rem; padding-left: 0.6rem; }
}

/* Impression */
@media print{
  nav, .btn, footer, .no-print { display: none !important; }
  .card.policy-card{ box-shadow: none; border: none; }
  .card.policy-card .card-body{ padding: 1rem; }
}


