body {
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    color: #4A4A4A;
    background: linear-gradient(135deg, #253D68, #347FE1);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
}

.header {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 50px; /* Conserver l'espace du haut */
}

/* NOUVELLE CLASSE POUR LE CONTENEUR DU LOGO */
.logo-container {
    max-width: 1000px; /* MÊME LARGEUR MAX que le cadre du contenu */
    width: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    box-sizing: border-box; /* Important pour que le padding ne s'ajoute pas à la largeur */
}

.logo {
    width: auto; /* Permet au logo de garder sa largeur originale */
    max-width: 100%; /* S'assure que le logo ne dépasse pas son conteneur */
    height: auto;
}

.content {
    max-width: 1000px;
    width: 100%;
    margin: 40px auto;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 40px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

h1, h3, .slogan-container p {
    font-family: 'Montserrat', sans-serif;
    color: #253D68;
}

h1 {
    font-weight: 700;
    font-size: clamp(1.5em, 5vw, 2.5em);
    margin-bottom: 10px;
}

.intro {
    font-size: clamp(1em, 2vw, 1.1em);
    font-style: italic;
    color: #4A4A4A;
}

.bio-services-container {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
    text-align: left;
}

.bio-container, .services-container {
    flex-grow: 1;
    max-width: 450px;
    box-sizing: border-box;
    padding: 10px;
}

.profile-photo {
    width: 100%;
    max-width: 250px;
    height: auto;
    border-radius: 10px;
    margin-bottom: 20px;
    object-fit: cover;
}

.services-container ul {
    list-style-type: none;
    padding: 0;
}

.services-container li {
    margin-bottom: 10px;
}

.slogan-container {
    margin-top: 40px;
    font-size: clamp(1.2em, 3vw, 1.5em);
    font-weight: 700;
    color: #253D68;
    border-top: 2px solid #347FE1;
    padding-top: 20px;
}

.footer {
    margin-top: 40px;
    color: white;
    padding-bottom: 20px;
}

.footer h3 {
    color: white;
    font-size: clamp(1.2em, 3vw, 1.5em);
}

.footer p {
    margin: 5px 0;
}