.btn-en-savoir-plus {
    display: inline-block;
    padding: 15px 40px;
    background-color: #90afa4;
    /* même vert que sur ton site */
    color: #ffffff;
    font-size: 20px;
    font-family: "Gotham light", sans-serif;
    /* ou toute autre police si Gotham n'est pas dispo */
    line-height: 20px;
    border-radius: 5px;
    text-decoration: none;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-en-savoir-plus:hover {
    background-color: #7f9c92;
    /* un peu plus foncé au survol */
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}