.accueil-expertise-container {
    width: 100%;
    height: fit-content;
    padding: 2rem 0;
}

.accueil-expertise {
    position: relative;
    width: 80%;
    max-width: 1200px;
    height: fit-content;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 2rem;
    box-sizing: border-box;
}

/* Coin décoratif en haut à droite */
.accueil-expertise::before {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    border: 2px solid #E0E0E0;
    top: 0;
    right: 0;
    border-left: none;
    border-bottom: none;
    z-index: 1;
}

/* Coin décoratif en bas à gauche */
.corner-bottom-left {
    position: absolute;
    width: 30px;
    height: 30px;
    border: 2px solid #E0E0E0;
    bottom: 0;
    left: 0;
    border-right: none;
    border-top: none;
    z-index: 1;
}

/* version mobile */

@media (max-width: 862px) {
.accueil-expertise {
    width: 95%;
}
}
