#hero-section h1{

    padding: 2px;
    text-shadow: #000 1px 0 10px;
    color: #FFF;
    font-size: 40px;
    text-transform: uppercase;
    text-align: center;
}

p.hero-subtitle.h2 {
    margin: 0;
    text-shadow: #000 1px 0 10px;
    color: #FFF;
    font-size: 30px;
    padding-top: 20px;
    padding-bottom: 20px;
    text-align: center;
}

#hero-section .btn-get-started{
    margin:auto;
}

.text-image-section h2,#faq-section h2, #bloc_realisations h2{
text-align: center;
    font-size: 32px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
}

.text-image-section h2::after,#faq-section h2::after,#bloc_realisations h2::after{
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: #fe5815;
    bottom: 0;
    left: calc(50% - 25px);
}

#bloc_offreperso h4{
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 18px;
}

#bloc_offreperso p{
    margin-bottom: 50px;
}

#bloc_offreperso .btn,#bloc_fonctionnement .btn{
    background: var(--accent-color);
    color: var(--surface-color);
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    padding: 12px 24px;
    border-radius: 5px;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    margin:auto;
    display: block;
}

#faq-section{
    background: #fff6ea
}

#faq-accordion .card-header h3{
    display: block;
    position: relative;
    font-family: #fe5815;
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    padding-left: 5px;
    cursor: pointer;
    color: #32969a;
    transition: 0.3s;
    color:#000
}

#faq-accordion .card-header h3 .btn-link {
    color: #000;
}

/* AJOUT FLECHE FAQ */
#faq-accordion .card-header .btn-link {
    position: relative;
    padding-left: 25px;
}
#faq-accordion .card-header .btn-link::before {
    content: "";
    position: absolute;
    left: 5px;
    top: 50%;
    width: 8px;
    height: 8px;
    border-left: 2px solid #000;
    border-bottom: 2px solid #000;
    transform: translateY(-50%) rotate(-45deg);
}
#faq-accordion .card-header .btn-link.collapsed::before {
    transform: translateY(-50%) rotate(135deg);
}