/* Style global pour la section Présentation */
#presentation {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 50px 100px;
    background-color: #f9f9f9;
}

/* Style pour la partie texte */
.presentation-text {
    max-width: 60%;
}

.presentation-text h2 {
    font-size: 36px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.presentation-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.presentation-text a {
    font-size: 16px;
    color: #333;
    text-decoration: none;
    font-weight: bold;
}

.presentation-text a:hover {
    color: #ff3333; /* Changer la couleur au survol */
    text-decoration: underline;
}

/* Style pour l'image de profil */
.presentation-image {
    max-width: 30%;
    text-align: center;
}

.presentation-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
}

.presentation-image h3 {
    font-size: 22px;
    font-weight: bold;
    color: #333;
}

/* Responsive design pour la section Présentation */
@media (max-width: 768px) {
    #presentation {
        flex-direction: column;
        align-items: center;
        padding: 20px;
    }

    .presentation-text, .presentation-image {
        max-width: 100%;
        text-align: center;
    }

    .presentation-image {
        margin-bottom: 20px;
    }
}
