.section-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    align-items: stretch;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.card {
    background-color: var(--color-white);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    flex-basis: 300px;
    /* Donne une base fixe aux cartes */
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.card img {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
}

.card h3 {
    color: var(--color-primary);
    /* Utilise la couleur primaire pour les titres des cartes */
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.card p {
    font-size: 0.95rem;
    flex-grow: 1;
    /* Permet au texte de remplir l'espace */
}

.card .button {
    margin-top: 1rem;
}

/* Style pour la section "Comment ça marche" avec deux colonnes */
.split-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 2rem;
    align-items: flex-start;
}

.split-section > div {
    flex-basis: 45%;
    min-width: 300px;
    text-align: left;
    padding: 1.5rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.split-section > div h3 {
    text-align: center;
    margin-bottom: 1rem;
}

.split-section > div ul {
    list-style-type: "✓";
    /* Ajoute une petite coche */
    padding-left: 20px;
}

.split-section > div li {
    margin-bottom: 0.5rem;
}

.split-section > div .button-container {
    text-align: center;
    margin-top: 1.5rem;
}
