body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

header {
    margin-bottom: 20px;
}

.header-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

h1 {
    color: #444444;
    margin-bottom: 10px;
}

h2 {
    color: #c82606; /* Couleur rouge */
    margin-bottom: 10px;
    font-family: 'Times New Roman', serif; /* Utilisation de la police Times */
}

h3, .highlight {
    color: #444444; 
    margin-bottom: 10px;
    font-weight: bold;  
}

.section-title {
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    background-color: #e9e9e9;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 5px;
    transition: background-color 0.3s;
}

.section-title:hover {
    background-color: #d9d9d9;
}

.section-content {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease-out;
    padding: 0 10px;
}

.section[aria-expanded="true"] .section-content {
    max-height: 500px;
    padding: 10px;
}

.linkedin-icon {
    width: 100px; 
    height: auto;
    margin-left: 15px; 
}

a {
    color: #0056b3;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}
