/* =========================
   SECTION AVEC IMAGE DE FOND
========================= */
.market-bg-section {
    position: relative;
    padding: 120px 0;
    background: url("../images/formation.png") center / cover no-repeat;
}

/* Overlay sombre pour lisibilité */
.market-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(11, 31, 51, 0.55),
        rgba(11, 31, 51, 0.75)
    );
}

/* =========================
   CARD CENTRALE
========================= */
.market-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 42px 40px;
    box-shadow: 0 25px 60px rgba(0,0,0,.25);
}

/* =========================
   TITRE & INTRO
========================= */
.market-title {
    font-size: 2.1rem;
    font-weight: 800;
    color: #0b1f33;
    margin-bottom: 18px;
}

.market-intro {
    font-size: 1.05rem;
    color: #4b5563;
    margin-bottom: 32px;
}

/* =========================
   LISTE AVEC ICÔNES
========================= */
.market-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.market-list li {
    display: flex;
    gap: 16px;
    margin-bottom: 22px;
}

/* Icônes rondes */
.market-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f6c343, #f2b705);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0b1f33;
    font-size: 1.25rem;
}

/* Texte liste */
.market-list strong {
    display: block;
    font-size: 1.05rem;
    color: #0b1f33;
}

.market-list p {
    margin: 0;
    font-size: 0.95rem;
    color: #4b5563;
}

/* =========================
   RESPONSIVE MOBILE
========================= */
@media (max-width: 768px) {

    .market-bg-section {
        padding: 80px 15px;
    }

    .market-card {
        padding: 30px 24px;
        border-radius: 20px;
    }

    .market-title {
        font-size: 1.6rem;
    }

    .market-list li {
        margin-bottom: 18px;
    }
}
