.eighth-section {
    background-color: #0D0D0D;
    padding: 0;
}

.eighth-section .ul-box {
    border-bottom: solid 1px #ffffff53;
    margin-bottom: 1vh;
}

.eighth-section .active {
    font-weight: bold;
    text-decoration: underline;
}

.eighth-section ul {
    color: #ffffff;
    list-style-type: none;
    padding: 0;
    margin-bottom: 2vh;
    display: flex;
    flex-wrap: wrap;
    margin-left: 3vw;
}

.eighth-section ul li {
    width: 50%;
    padding: 0.5vh 0.1%;
}

.eighth-section ul li a, .eighth-section ul li h5 {
    font-size: 0.7rem;
    font-weight: 300;
    margin: 0;
    color: #ffffff;
    text-decoration: none;
}

.eighth-section ul li span {
    font-size: 0.625rem;
    font-weight: 350;
    color: #ffffffb2;
}

.eighth-section .collapse-section {
    padding-left: 2vw !important;
    padding-right: 2vw !important;
}

.eighth-section h4 {
    font-size: 4vw;
    font-weight: 500;
    color: #ffffff;
    margin: 15px 3vw;
}

.footer-section {
    background-color: #0D0D0D;
    width: 100%;
}

.footer-section-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.footer-section button {
    background-color: #0D0D0D00;
    color: rgba(255, 255, 255, 0.80);
    cursor: pointer;
    border-radius: 2.6px;
    border: 1px solid;
    padding: 0.75vh 5vw;
    text-align: center;
    font-weight: 700;
    font-size: 1rem;
    margin-top: 2vh;
    height: 6vh;
    width: 30vw;
}

.footer-section button:hover {
    background-color: #ffffff;
    color: #0D0D0D;
    transition: ease-in-out 0.3s;
}

.footer-section img {
    width: 30%;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1rem;
    padding: 0;
    margin: 0;
}

.title-ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    width: 100%;
    position: relative;
    z-index: 1;
}

.title-ul h4 {
    margin: 0;
    padding: 0;
}

.title-ul .btn {
    background: transparent;
    border: none;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
}

.title-ul .btn:focus {
    box-shadow: none;
}

.collapse {
    display: block;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    position: relative;
    z-index: 0;
    transform: translateY(-10px);
}

.collapse.show {
    max-height: 1000px;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.3s ease-in-out;
}

.toggle-arrow {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease-in-out;
}

button[aria-expanded="true"] .toggle-arrow {
    transform: rotate(180deg);
}

button[aria-expanded="false"] .toggle-arrow {
    transform: rotate(0deg);
}

@media screen and (min-width: 768px) {
    .eighth-section h4 {
        font-size: 1rem;
    }
}

/* Style pour les liens du footer */
.list-group-item {
    background: transparent;
    border: none;
    color: #ffffff;
    padding: 0.25rem 0;
}

.list-group-item:hover {
    color: rgba(255, 255, 255, 0.8);
}