body {
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
    padding-top: 60px;
}

.custom-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    margin: 85px auto 60px auto;
    width: 50%;
}

.custom-card h1 {
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 600;
    /* Augmenté de 1.5rem à 2rem */
    color: #000;
    text-align: center;
}

.custom-card p {
    font-size: 19px;
    line-height: 1.6;
    color: #000;
    margin-bottom: 26px;
    font-weight: 600;
    /* Augmenté de 1rem à 1.5rem */
}

.custom-card p strong {
    color: rgb(34, 116, 68);
    margin-top: -1px;
    margin-right: 11px;
    font-weight: 600;
}

.bouton-bleu {
    width: 100%;
    background: rgb(34, 116, 68);
    border: 1px solid rgb(34, 116, 68);
    color: white;
    height: 45px;
    padding: 10px 20px;
    font-size: 20px;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
    /* Espace ajouté au-dessus du bouton */
}

.bouton-bleu:hover {
    background: rgb(24, 94, 53);
    border: 1px solid rgb(24, 94, 53);
}
.numbered-list p {
    display: flex;
    align-items: flex-start;
    margin-bottom: 28px;
}
@media (max-width: 768px) {
    .custom-card {
        width: 90%;
        padding: 1.5rem;
        margin: 85px auto 60px auto;
    }

    .custom-card h1 {
        font-size: 1.5rem;
        margin-bottom: 2.8rem;
    }
    .custom-card p strong {
        color: rgb(34, 116, 68);
        margin-top: -7px;
        margin-right: 11px;
        font-weight: 600;
        font-size: 21px;
    }
    .custom-card p {
        margin-bottom: 30px;
        font-size: 16px;

    }

    .bouton-bleu {
        font-size: 20px;
        padding: 8px 16px;
        margin-top: 1.8rem;
        /* Espace légèrement réduit sur mobile */
    }
}