/* SECTION PROBLÈMES */
.problems-section {
    text-align: center;
    margin: 50px auto; /* Centre la section */
    padding: 20px;
    background-color: #f8f8f8; /* Fond clair */
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Ombre légère */
    width: 90%; /* Largeur identique aux autres sections */
    max-width: 800px; /* Largeur maximale */
    box-sizing: border-box; /* Inclut padding et bordures */
}

/* TITRE DE LA SECTION */
.section-title {
    font-size: 28px;
    color: #333;
    margin-bottom: 20px;
}

/* CONTENU DE LA SECTION */
.problems-card {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Ombre légère */
}

/* TITRE DES QUESTIONS */
.problems-title {
    font-size: 22px;
    margin-bottom: 15px;
    color: #555;
}

/* LISTE DES QUESTIONS */
.problems-list {
    list-style-type: none; /* Supprime les puces */
    padding: 0;
    margin-bottom: 20px;
}

.problems-list li {
    display: flex;
    align-items: center; /* Aligne les icônes avec le texte */
    margin-bottom: 10px;
    font-size: 16px;
    color: #666;
    line-height: 1.6; /* Hauteur de ligne */
}

/* ICÔNES DANS LA LISTE */
.problems-list li img {
    height: 20px; /* Taille fixe des icônes */
    width: auto;
    margin-right: 10px; /* Espacement avec le texte */
}

/* TITRE AVEC ICÔNES */
.emphasis-title {
    font-size: 20px;
    color: #172937; /* Couleur d'accentuation */
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px; /* Espacement autour des icônes */
}

/* ICÔNES DU TITRE */
.emphasis-title img {
    height: 20px;
    width: auto;
}

/* TEXTE EN BAS DE SECTION */
.problems-footer {
    margin-top: 20px;
    font-size: 16px;
    color: #555;
}

/* TEXTE EN SURBRILLANCE */
.highlight-text {
    font-size: 18px;
    font-weight: bold;
    color: #172937;
    background: linear-gradient(135deg, #f0c690 0%, #e8b375 100%);
    padding: 3px 8px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
