/* Général */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #f4f4f4;
    color: #333;
    padding: 20px;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    background-color: white;
    padding: 30px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.profile {
    text-align: center;
}

.profile img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
}

.profile h1 {
    font-size: 28px;
    color: #1a73e8;
    margin-top: 10px;
}

.profile .title {
    font-size: 16px;
    font-style: italic;
    color: #666;
}

.contact {
    max-width: 300px;
}

.contact h2 {
    font-size: 18px;
    color: #1a73e8;
}

.contact p {
    font-size: 14px;
    margin-bottom: 10px;
}

.contact a {
    color: #1a73e8;
    text-decoration: none;
}

/* Sections */
section {
    margin-bottom: 30px;
}

h2 {
    font-size: 22px;
    color: #1a73e8;
    margin-bottom: 10px;
}

h3 {
    font-size: 18px;
    color: #333;
}

.job ul {
    list-style-type: disc;
    margin-left: 20px;
}

footer {
    text-align: center;
    font-size: 14px;
    color: #888;
}

/* Responsive */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        align-items: center;
    }

    .contact {
        max-width: none;
        text-align: center;
        margin-top: 20px;
    }
}
