    /* Wrapper pour bouton et texte */
    .who-we-are-wrapper {
        display: inline-block;
        position: relative;
        margin-left: 25px;
    }

    /* Bouton bleu classique */
    .who-we-are-button {
        background-color: #1D2362;
        color: #fff;
        border: none;
        padding: 10px 20px;
        cursor: pointer;
        font-weight: bold;
        border-radius: 5px;
    }

    /* Contenu texte plus large qui pousse vers le haut */
    .who-we-are-content {
        width: 430px;
        /* taille fixe du texte */
        background-color: #1D2362;
        color: #fff;
        padding: 10px 20px;
        border-radius: 5px;
        box-sizing: border-box;
        margin-bottom: 10px;
        /* pour le faire “monter” */
        transform: translateY(-65%);
        /* remonte le bloc au-dessus de l’endroit du bouton */
    }

    .footer-content {
        display: flex;
        align-items: flex-end;
        flex-wrap: wrap;
    }

    .footer-image {
        margin-left: auto;
        margin-right: 20px;
    }