body {
    background-color: #fff;
}

h1,h2 {
    color: #000000E6;
    font-weight: 400;
}

.cgu-hero {
    background-color: var(--not-white);
    width: 100%;
    position: relative;
    bottom: 65px;
    height: 20vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cgu-hero h1 {
    text-align: center;
    color: black !important;
    font-size: 50px;
    font-weight: 400;
}

.cgu-content {
    max-width: 700px;
    width: 90%;
    margin: 0 auto;
    text-align: center;
    line-height: 1.6;
    font-size: 16px;
    text-align: justify;
    font-family: "DM Sans - Regular", sans-serif;
}

.cgu-content p:nth-child(1) {
    color: var(--color-8);
    font-weight: 500;
}

.cgu-sommaire {
     margin-top: 50px;   
}

.cgu-sommaire ol {
    margin-top: 30px;
}

.cgu-sommaire ol li:not(last-child){
    margin-bottom: 24px;
}

a {
    font-weight: 500;
    font-size: 16px;
    color: #0073B1;
    font-family: Inter, system-ui, Arial, sans-serif;
}

a:hover {
    text-decoration: underline !important;
    color: #0073B1 !important;
}

/* Les liste imbriquées */

.lvl1 {
    counter-reset: section;
}

.lvl1 > li {
    counter-increment: section;
}

.lvl > li:before {
    content: counter(section);
}

.lvl2 {
    counter-reset: subsection;
    margin-left: 25px;
}

.lvl2 > li {
    counter-increment: subsection;
}

.lvl2 > li:before {
    content: counter(section)"."counter(subsection);
    /* font-weight: bold; */
    margin-right: 10px;
}

.lvl2 {
    list-style: none;
}

.cgu-body ol li ol li, .cgu-text {
    /* border:1px solid; */
    position: relative;
    right: 12%;
}

.cgu-body {
    margin-top: 15%;
}

.lvl2 li {
    font-size: 22px;
    margin-top: 5%;
}

.lvl1 > li:not(first-child) {
    margin-top: 6%;
}

.lvl1 li::marker {
    font-size: 33px;
}

.cgu-text {
    font-size: 14px;
}

.cgu-text:not(first-child) {
    margin-top: 5%;
}

.point {
    font-size: 20px;
    margin: 5% 0 5% 0;
}

.underline {
    text-decoration: underline;
}

.important {
    text-transform: uppercase;
}

.marked {
    background-color: #ecf9fb;
    padding: 20px;
}