.cgu {
    display: flex;
    flex-direction: column;
    padding: 50px 0 50px 50px;
    box-sizing: border-box;
    position: relative;
    gap: 50px;
    z-index: 1;
    margin-top: 180px;

    h1 {
        font-size: 3.2em;
        color: var(--rose-pale);
        text-align: center;
        position: absolute;
        top: -130px;
        left: 50%;
        transform: translateX(-50%);
        width: fit-content;
        text-shadow: 2px 2px 0 var(--gris-fonce-textes);
    }

    .ruban {
        position: absolute;
        top: 70px;
        right: 0;
        width: 60%;
        z-index: -1;
    }

    .resume {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        font-size: 1.5em;
        width: fit-content;
        margin-top: 50px;
        margin-bottom: 50px;
    }

    .tiny {
        max-width: 50%;
    }

    div:not(.resume) {
        display: flex;
        flex-direction: column;
        font-size: 1.1em;
        gap: 10px;

        .three-sixty-condensed:not(h1) {
            font-size: 1.1em;
        }

        a {
            color: var(--rose);
            transition: 0.3s ease;

            &:hover {
                color: var(--rose-vif);
            }
        }

        ul {
            margin: 0;
        }
    }

    div:not(.resume):not(.tiny) {
        padding-right: 50px;
    }
}