.cpf-mobile-section {
    background: #f2f4f7;
    padding: 50px 0;
}

/* TITRES */
.cpf-title {
    font-size: 1.7rem;
    font-weight: 800;
    color: #0b1f33;
    text-align: center;
}

.cpf-subtitle {
    text-align: center;
    color: #6b7280;
    margin-bottom: 30px;
}

/* LARGEUR MAÎTRISÉE */
.cpf-card-narrow {
    max-width: 550px;
    margin: 0 auto 18px;
}

/* CARD */
.cpf-card {
    background: #fff;
    border-radius: 16px;
    padding: 16px 18px;
    box-shadow: 0 8px 18px rgba(0,0,0,.05);
}

/* HEADER */
.cpf-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.cpf-card-header h5 {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    color: #0b1f33;
}

/* ICONES */
.cpf-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.cpf-icon.blue {
    background: #eef2ff;
    color: #1e3a8a;
}

.cpf-icon.dark {
    background: #f1f5f9;
    color: #0b1f33;
}

/* CONTENU TEXTE */
.cpf-text ul {
    padding-left: 18px;
    margin: 0;
    color: #374151;
}

.cpf-text li {
    margin-bottom: 6px;
}

/* LISTE SIMPLE */
.cpf-simple-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cpf-simple-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #374151;
    margin-bottom: 10px;
}

/* LIEN */
.cpf-link {
    margin-top: 12px;
    display: inline-block;
    font-weight: 600;
    color: #0b1f33;
    font-size: .95rem;
    text-decoration: none;
}

/* INFO */
.cpf-info {
    max-width: 420px;
    margin: 15px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #4b5563;
    font-weight: 600;
    text-align: center;
}

/* CARD AVEC IMAGE */
.cpf-card-with-image {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* CONTENU */
.cpf-card-content {
    flex: 1;
}

/* IMAGE */
.cpf-card-image {
    width: 130px;
    min-width: 130px;
    height: 90px;
    background: #f6f7f9;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.cpf-card-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; /* 🔑 jamais coupée */
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .cpf-card-with-image {
        flex-direction: column;
        align-items: flex-start;
    }

    .cpf-card-image {
        width: 100%;
        height: 140px;
        margin-top: 8px;
    }
}
