#mentions-legales {
    padding: 92px 0px 90px 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.top

#mentions-legales h2 {
    font-size: 38px;
    margin-bottom: 65px;
}

.links {
    display: flex;
    flex-direction: column;
}

.links a {
    margin-top: 10px;
}

.section-title h2 {
    margin-bottom: 70px;
}

.accordion {
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0px -2px 34px 0px rgba(0, 0, 0, 0.25);
    width: 70%;
    border-radius: 11px;
}

.accordion-item:first-child {
    border-radius: 11px 11px 0px 0px;
}

.accordion-item:last-child {
    border-radius: 0px 0px 11px 11px;
}

.accordion-item {
    border-bottom: 1px solid #ccc;
    background-color: #f4f4f4;
    width: 100%;
}

.accordion-title {
    min-height: 90px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 40px;
    font-size: 20px;
    font-weight: 600;
}

.arrow {
    transition: transform 0.3s ease;
    color: #f37538;
}

.open .arrow {
    transform: rotate(90deg);
}

.accordion-content {
    border-top: 1px solid var(--Bleu-Desidel-Darck, #1d3261);
    display: none;
    height: 0px;
}

.open .accordion-content {
    border-top: 1px solid var(--Bleu-Desidel-Darck, #1d3261);
    display: none;
    height: auto;
    padding: 40px;
}

.accordion-content p:not(:last-child) {
    margin-bottom: 10px;
}

.accordion-content p {
    color: #1D3261;
    font-size: 16px;
}

.accordion-content p a {
    color: var(--Color-text, #60A8F9);
}

#bottom-section {
    height: 340px;
    overflow: hidden;
    display: flex;
    background-image: url(../img/mentions-legales-bottom.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

#bottom-section img {
    width: 100%;
    height: auto;
}

@media (max-width: 1024px) {
    .accordion {
        width: 95%;
    } 
}

@media (max-width: 540px) {
    .accordion-title {
        min-height: 70px;
    }
}
