/* 
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Structure globale */
html, body {
    width: 100%;
    min-height: 100vh;
    font-family: Arial, Helvetica, sans-serif;
    background-color: #f5f7fa;
}

/* Conteneur du CV */
.cv {
    max-width: 800px;
    margin: 40px auto;
    background-color: white;
    padding: 30px;
    border-radius: 8px;
}

/* Header */
.header {
    text-align: center;
    margin-bottom: 30px;
}

/* Photo de profil */
.-profil {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 15px;
}

/* Nom */
h1 {
    color: darkblue;
    background-color: lightblue;
    padding: 7px 0;
    margin-bottom: 5px;
}

/* Poste */
.poste {
    font-size: 18px;
    color: #333;
}

/* Titres de section */
h2 {
    margin-top: 25px;
    margin-bottom: 10px;
    color: darkblue;
    border-bottom: 2px solid lightblue;
    padding-bottom: 5px;
}

/* Paragraphes */
p {
    margin-bottom: 8px;
}

/* Listes */
ul {
    margin-left: 20px;
}

ul li {
    margin-bottom: 6px;
}
  
 