/* Titre de la section Cible */
#cible h2 {
    margin-bottom: 2.5rem;
}

/* Titre de la section Exclusion */
#exclusion h2 {
    margin-bottom: 1.8rem;
}

/* Listes générales */
#cible ul,
#exclusion ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

#cible li,
#exclusion li {
    margin-bottom: 1.5rem;
    padding-left: 3.5rem;
    min-height: 32px;
    display: flex;
    align-items: flex-start;
    text-align: left;
    line-height: 1.4;
}

/* Base partagée des puces icones */
#cible li::before,
#exclusion li::before {
    display: inline-block;
    background-color: #f0f5f0;
    font-weight: bold;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    flex-shrink: 0;
    margin-left: -3.5rem;
    margin-right: 1rem;
    margin-top: 2px;
}

/* Ticks (✔) — section "Pour qui" */
#cible li::before {
    content: "✔";
    color: #27ae60;
}

/* Croix (✖) — section "Exclusion" */
#exclusion li::before {
    content: "✖";
    color: #c0392b;
}
