.section-cards {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    align-items: flex-start;
    max-height: none;
    overflow: visible;
}

.section-cards div {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 1rem;
}
.card {
    background-color: var(--color-light);
    border-radius: 10px;
    padding: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    flex: 1 1 calc(25% - 2rem); /* Ajustez la largeur des cartes */
    min-width: 200px; /* Largeur minimale pour les cartes */
    max-width: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.card img {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
}
.card p {
    color: var(--color-text);
    font-size: 0.9rem;
    margin-bottom: auto;
}

#split {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
    width: 100%;
}

#split > div {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

@media (max-width: 768px) {
    #split {
        flex-direction: column;
        align-items: center;
    }
    #split > div {
        width: 100%;
    }

    .section-cards div {
        flex-direction: column;
        align-items: center;
    }
}
