* {
    box-sizing: border-box;
}

body {
    background: #001f2d;
    color: #fff;
    font-family: 'Segoe UI', sans-serif;
    margin: 0;

    position: relative;
    min-height: 100vh;
    padding-bottom: 5px; 
}

.container-mentions {
    max-width: 1300px; 
    margin: 0 auto 80px;
    padding: 100px 20px 0 20px;
}

.container-mentions h1 {
    font-size: 3.5rem;
    color: #b4c5e4; 
    text-transform: uppercase;
    position: relative; 
    padding-bottom: 20px;
}

.container-mentions h1::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 4px;
    background: #b4c5e4;
    border-radius: 4px;   
}

.container-mentions section {
    margin-bottom: 50px;
}

.container-mentions section h2 {
    color: #fff;
    font-size: 2rem;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3); 
    padding-bottom: 10px;
}

.container-mentions section h3 {
    font-size: 1.4rem;
    color: #b4c5e4;
    margin-top: 30px;
    margin-bottom: 15px;
}

.container-mentions section p {
    font-size: 1.1rem;
}

.container-mentions section ul {
    padding-left: 20px;
}

.container-mentions section ul li {
    margin-bottom: 10px;
}

.container-mentions section ul li strong {
    color: #b4c5e4;
}


.container-mentions a {
    color: #b4c5e4;
    text-decoration: none;
    border-bottom: 1px solid #b4c5e4;
    transition: all 0.3s;
}

.container-mentions a:hover {
    color: #fff;
    border-bottom: 1px solid #fff;
}

.info-bloc {
    position: relative; 
    padding: 1px 0 1px 15px; 
}

.info-bloc::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: #b4c5e4;
    border-radius: 4px;   
}

.info-bloc p {
   margin: 5px;
}

.container-mentions .liste-equipe {
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}

.container-mentions .liste-equipe li {
    font-size: 1.2rem;
    font-weight: 600;
    display: flex; 
    align-items: center;
}

.container-mentions .liste-equipe li::after {
    content: '';
    width: 3px;
    height: 15px;
    background: #fff;
    border-radius: 2px;
    margin: 0 20px;
}

.container-mentions .liste-equipe li:last-child::after {
    display: none;
}