:root {
    --main-brown: #6d4c3d; /* Couleur inspirée de votre logo */
    --light-grey: #f4f4f4;
    --text-dark: #333;
}

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background-color: #e0e0e0;
    margin: 0;
    padding: 20px;
    color: var(--text-dark);
}

.cv-container {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    display: flex;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

/* Sidebar */
.sidebar {
    width: 35%;
    background-color: var(--main-brown);
    color: white;
    padding: 30px;
}

.logo {
    width: 80px;
    height: 80px;
    border: 3px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.sidebar h2 {
    border-bottom: 1px solid rgba(255,255,255,0.3);
    padding-bottom: 5px;
    font-size: 1.1rem;
    margin-top: 30px;
}

/* Main Content */
.main-content {
    width: 65%;
    padding: 40px;
}

.subtitle {
    font-weight: bold;
    letter-spacing: 2px;
    color: #ddd;
}

h2 {
    color: var(--main-brown);
    border-bottom: 2px solid var(--main-brown);
    padding-bottom: 5px;
}

.job, .edu-item {
    margin-bottom: 20px;
}

.date {
    font-style: italic;
    color: #666;
    font-size: 0.9rem;
}

ul {
    padding-left: 20px;
}

li {
    margin-bottom: 5px;
}