/* ============================= */
/* FAQ – CARTES */
/* ============================= */

.faq-cards-section {
    padding: 60px 0;
}

/* Carte */
.faq-card {
    display: flex;
    gap: 16px;
    background: #ffffff;
    border-radius: 18px;
    padding: 22px 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    height: 100%;
    transition: transform .2s ease, box-shadow .2s ease;
}

/* Hover */
.faq-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.1);
}

/* Icône */
.faq-icon {
    min-width: 46px;
    height: 46px;
    border-radius: 14px;
    background: rgba(11, 94, 215, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0b5ed7;
    font-size: 22px;
}

/* Contenu */
.faq-content h5 {
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 6px;
}

.faq-content p {
    margin: 0;
    color: #444;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media (max-width: 768px) {
    .faq-card {
        padding: 20px;
    }
}
