/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
}

h1, h2, h3, h4 {
    margin: 0;
    padding: 0.5em 0;
}

/* Header */
header {
    background-color: #109664;
    color: #fff;
    padding: 1em;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 10vh;
}

header h1 {
    font-size: 2em;
}

nav {
    display: flex;
    gap: 1em;
}

nav a {
    text-decoration: none;
    color: #fff;
    font-size: 1.2em;
    padding: 0.5em 1em;
    border-radius: 5px;
    transition: background-color 0.3s;
}

nav a:hover {
    background-color: #666;
}

/* Section CV */
#sectionCv {
    padding: 2em;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin: 2em auto;
    width: 80%;
}

#parcoursProfessionel {
    display: flex;
    justify-content: space-between;
    gap: 2em;
    margin-bottom: 2em;
}

#parcoursProfessionel > div {
    width: 48%;
}

#parcoursProfessionel h2 {
    font-size: 1.5em;
    margin-bottom: 1em;
}

#parcoursProfessionel div > div {
    margin-bottom: 1.5em;
}

#parcoursProfessionel h3 {
    font-size: 1.2em;
    color: #444;
}

#parcoursProfessionel h4 {
    font-size: 1em;
    color: #777;
    margin-bottom: 0.5em;
}

#parcoursProfessionel p {
    margin: 0.5em 0;
    line-height: 1.5;
}

/* Competences Table */
#competences {
    margin-top: 2em;
}

#competences table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2em;
}

#competences th, #competences td {
    border: 1px solid #ddd;
    padding: 0.8em;
    text-align: left;
}

#competences th {
    background-color: #f4f4f4;
    font-weight: bold;
}

#competences .cate {
    background-color: #eaeaea;
    font-weight: bold;
}

#competences .item {
    padding-left: 1em;
}

#competences .note {
    text-align: center;
    font-weight: bold;
    color: #444;
}

/* Download CV Button */
#btnCV {
    display: block;
    text-align: center;
    margin: 2em auto;
    text-decoration: none;
}

#cv {
    background-color: #00bf63;
    color: #fff;
    padding: 1em 2em;
    border-radius: 5px;
    display: inline-block;
    transition: background-color 0.3s;
}

#cv:hover {
    background-color: #109664;
}