/* Styles généraux */
body {
    background-color: #121212; /* fond sombre */
    color: white;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    margin: 0;
    padding: 20px;
}

/* Header avec image et titre */
.header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.header img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
}

h1 {
    color: #ffffff;
    text-decoration: underline;
    font-size: 2em;
    margin: 0;
}

h2 {
    color: #ffffff;
    margin-bottom: 20px;
}

p {
    color: #ffffff;
    line-height: 1.6;
}

p1 {
    color: white;
}

p2 { 
    color: black;
}
a {
    color: #dd0925;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.section {
    color: grey;
    margin-top: 20px;
}

.section ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 20px;
}

.section li {
    margin: 8px 0;
}

button {
    background-color: #dd0925;
    color: white;
    border: none;
    padding: 10px 20px;
    margin-top: 10px;
    cursor: pointer;
    font-size: 1em;
    border-radius: 5px;
}