body {
    background-color: #ffffff;
    font-family: "Nunito", sans-serif;
    margin: 0;
    padding: 180px 5% 5% 5%;
}

#title {
    position: fixed;
    top: 30px;
    left: 5%;
    width: 60%;
    padding: 15px;
    background-color: #e0dada;
    border-radius: 50px;
    text-align: center;
    z-index: 10;
}


.IA {
    position: fixed;
    top: 50px;
    right: 6%;
    width: 22%;
    background-color: #b3aeae;
    border-radius: 50px;
    text-align: center;
    padding: 10px;
    text-decoration: none;
    color: black;
    transition: 0.3s;
}

.IA:hover {
    background-color: #e0e0e0;
}


.section-bloc {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 30px;
    background-color: #f2f2f2;
    border-radius: 25px;
    padding: 40px;
    margin-bottom: 60px;
}

.section-bloc.reverse {
    flex-direction: row-reverse;
}


.section-text {
    width: 60%;
}

.section-text h2 {
    text-align: left;
    margin-bottom: 15px;
    font-size: 30px;
}

.section-text h3 {
    font-weight: 400;
    line-height: 1.6;
    font-size: 25px;
}


.section-image {
    width: 40%;
    text-align: center;
}

.section-image img {
    width: 100%;
    max-width: 320px;
    border-radius: 20px;
}

.sous-titre-image {
    font-size: 2em;      /* un peu plus petit qu'un h2 */
    color: #000000;        /* bleu vif, tu peux changer la couleur */
    font-weight: bold;     /* pour le faire ressortir */
    margin-top: 20px;      /* un peu d’espace au-dessus */
    margin-bottom: 10px;   /* un peu d’espace en dessous */
    font-family: 'Nunito', sans-serif; /* même police que ton site */
}

.lien-image {
    font-size: 1.5em;       /* plus petit que le texte principal */
    color: #555555;         /* gris foncé, discret */
    text-decoration: none;  /* enlève le soulignement si tu veux */
}

.lien-image:hover {
    color: #1E90FF;         /* change de couleur au survol */
    text-decoration: underline;
}

