/* --- STYLE GLOBAL DE LA PAGE --- */
body {
    color: white;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

/* --- TITRE PRINCIPAL --- */
.titre-page {
    text-align: center;
    margin-top: 40px;
    font-size: 36px;
    font-weight: 700;
}

/* --- CARTE DIPLÔME --- */
.diplome-card {
    background: #1a1a1a;
    width: 70%;
    margin: 40px auto;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #333;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.05);
    transition: 0.3s;
}

/* Effet hover premium */
.diplome-card:hover {
    transform: scale(1.01);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.08);
}

/* --- TITRES --- */
.nom-diplome {
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 700;
}

/* --- INFORMATIONS --- */
.infos-diplome {
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 18px;
}

/* --- DESCRIPTION --- */
.description {
    font-size: 17px;
    line-height: 1.5;
    margin-bottom: 20px;
}

/* --- LISTE DES COMPÉTENCES --- */
.competences {
    margin: 0;
    padding-left: 20px;
}

.competences li {
    margin: 6px 0;
    font-size: 17px;
}
