/* Style global */
body {
    font-family: Arial, sans-serif;
    background: #f2f2f2;
    margin: 0;
    padding: 0;
}

/* Header */
header {
    background: #0055aa;
    color: white;
    padding: 15px 20px;
    text-align: center;
}
header h1 {
    margin: 0;
}
nav {
    margin-top: 10px;
}
nav a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
    font-weight: bold;
}
nav a:hover {
    text-decoration: underline;
}

/* Main sections */
main {
    max-width: 900px;
    margin: 20px auto;
    padding: 0 20px;
}

/* Section titles */
h2 {
    color: #003366;
    border-bottom: 2px solid #0055aa;
    padding-bottom: 5px;
}

/* À propos */
#apropos img {
    width: 180px;
    border-radius: 50%;
    display: block;
    margin: 10px 0;
}

/* Compétences */
#competences ul {
    list-style-type: square;
    padding-left: 20px;
}

/* Formations / expériences */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}
th, td {
    border: 1px solid #333;
    padding: 8px;
    text-align: left;
}
th {
    background: #0055aa;
    color: white;
}

/* Contact / liens */
#contact a {
    display: inline-block;
    margin-right: 15px;
    color: #0055aa;
    text-decoration: none;
    font-weight: bold;
}
#contact a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    text-align: center;
    padding: 15px;
    background: #003366;
    color: white;
    margin-top: 30px;
}