* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 800px;
    margin: 40px auto;
    background-color: #fff;
    padding: 40px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

header {
    text-align: center;
    padding-bottom: 30px;
    border-bottom: 2px solid #4a90a4;
    margin-bottom: 30px;
}

header h1 {
    color: #2c5f6e;
    font-size: 2.5em;
    margin-bottom: 10px;
}

header p {
    color: #666;
    font-size: 1.2em;
}

.contact-info {
    margin-top: 15px;
    color: #555;
}

.contact-info a {
    color: #4a90a4;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

section {
    margin-bottom: 30px;
}

section h2 {
    color: #2c5f6e;
    font-size: 1.5em;
    margin-bottom: 15px;
    padding-bottom: 5px;
    border-bottom: 1px solid #ddd;
}

.info-item {
    margin-bottom: 10px;
}

.info-item strong {
    color: #2c5f6e;
}

.experience-item, .formation-item {
    margin-bottom: 20px;
    padding-left: 20px;
    border-left: 3px solid #4a90a4;
}

.experience-item h3, .formation-item h3 {
    color: #333;
    font-size: 1.1em;
    margin-bottom: 5px;
}

.experience-item p, .formation-item p {
    color: #666;
    font-size: 0.95em;
}

.competences-list, .interets-list {
    list-style-type: none;
}

.competences-list li, .interets-list li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.competences-list li:before, .interets-list li:before {
    content: "•";
    color: #4a90a4;
    font-weight: bold;
    position: absolute;
    left: 0;
}

@media print {
    .container {
        box-shadow: none;
        margin: 0;
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .container {
        margin: 20px 10px;
        padding: 20px;
    }

    header h1 {
        font-size: 2em;
    }

    header p {
        font-size: 1em;
    }

    section h2 {
        font-size: 1.3em;
    }

    .experience-item, .formation-item {
        padding-left: 15px;
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 1.8em;
    }

    header p {
        font-size: 0.9em;
    }

    .contact-info p {
        font-size: 0.85em;
        word-break: break-word;
    }

    section h2 {
        font-size: 1.2em;
    }

    .container {
        margin: 10px 5px;
        padding: 15px;
    }
}