.bodynous {
    min-height: 100vh;
    background: #747474;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 80px 20px 80px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

#btn-top {
    position: fixed;
    bottom: 60px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50% !important;
    background: linear-gradient(145deg, #0658ff, #0f2b3b) !important;
    color: white;
    font-size: 22px;
    border: none;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, transform 0.3s;
    z-index: 9999;
    box-shadow: 0 0 15px rgb(0 0 0), -1px 1px 20px 0px rgb(0 0 0);
    display: flex;
    align-items: center;
    justify-content: center;
}

#btn-top:hover {
    transform: translateY(-4px);
    background-color: #005f8e;
}

#btn-top.visible {
    opacity: 1;
    visibility: visible;
}

.cgu-section {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 60px 5%;
    color: #ffffff;
    text-align: center;
    box-sizing: border-box;
    font-family: 'Courier New', Courier, monospace;
}

.cgu-section h2 {
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-decoration: underline;
    color: white;
    margin-bottom: 60px;
    font-weight: bold;
    font-family: 'Courier New', Courier, monospace;
}

.cgu-article {
    margin-bottom: 50px;
}

.cgu-article ul {
    list-style: disc;
    text-align: left;
    display: inline-block;
    padding-left: 20px;
    margin: 10px 0 14px 0;
}

.cgu-article ul li {
    font-size: 1rem;
    line-height: 2;
    color: #ffffffdd;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.cgu-article h3 {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.cgu-article p {
    font-size: 1rem;
    line-height: 2;
    color: #ffffffdd;
    max-width: 100%;
    margin: 0 0 14px 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.cgu-article strong {
    font-weight: bold;
    color: white;
}

.cgu-article strong.couleurP {
    color: #60B8CC !important;
}

.pied-de-page {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    padding: 15px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
    z-index: 999;
}