/* =========================================================
   FRENCHSOGOOD - CGU / CGV
========================================================= */

@font-face {
    font-family: 'HarlowSI';
    src: url('../fonts/HARLOWSI.TTF') format('truetype');
    font-weight: normal;
    font-style: normal;
}

.fsg-cgu-page {
    background: #f7f7fb;
    padding-bottom: 80px;
}

/* =========================================================
   BANNER
========================================================= */

.fsg-cgu-banner {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #08006b;
}

.fsg-cgu-banner img {
    width: 100%;
    height: 310px;
    object-fit: cover;
    display: block;
}

.fsg-cgu-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(8, 0, 107, 0.22);
    z-index: 1;
}

.fsg-cgu-banner h1 {
    font-family: 'HarlowSI', sans-serif !important;

    position: absolute;
    z-index: 2;

    bottom: 33%;
    left: 50%;
    transform: translateX(-50%);

    margin: 0;

    color: #ffffff;

    font-size: clamp(2.4rem, 5vw, 5rem);
    font-weight: normal;
    line-height: 1;

    text-align: center;

    text-shadow: 0 0 20px #000000;

    white-space: nowrap;

    text-transform: none !important;
    letter-spacing: 0;
}

/* =========================================================
   INTRO SOUS BANNER
========================================================= */

.fsg-cgu-intro {
    background: #ffffff;
    padding: 28px 0;
    border-bottom: 1px solid rgba(8, 0, 107, 0.12);
}

.fsg-cgu-intro p {
    margin: 0;
    color: #08006b;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.6;
    text-align: center;
}

/* =========================================================
   CONTENT
========================================================= */

.fsg-cgu-content {
    padding-top: 55px;
}

.fsg-cgu-content .fsg-container {
    max-width: 980px;
}

.fsg-cgu-card {
    background: #ffffff;
    border: 2px solid #08006b;
    border-radius: 24px;
    padding: 34px;
    margin-bottom: 30px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.fsg-cgu-card h2 {
    margin: 0 0 20px;
    color: #08006b;
    font-size: 28px;
    line-height: 1.2;
}

.fsg-cgu-card p {
    margin: 0 0 18px;
    color: #222222;
    font-size: 16px;
    line-height: 1.8;
}

.fsg-cgu-card p:last-child {
    margin-bottom: 0;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 900px) {

    .fsg-cgu-banner img {
        height: 240px;
    }

    .fsg-cgu-banner h1 {
        font-size: clamp(2.2rem, 8vw, 4rem);
        bottom: 34%;
    }

    .fsg-cgu-intro {
        padding: 24px 0;
    }

    .fsg-cgu-intro p {
        font-size: 16px;
    }

    .fsg-cgu-card {
        padding: 26px;
        border-radius: 20px;
    }

    .fsg-cgu-card h2 {
        font-size: 24px;
    }

    .fsg-cgu-card p {
        font-size: 15px;
    }
}

@media (max-width: 560px) {

    .fsg-cgu-banner img {
        height: 180px;
    }

    .fsg-cgu-banner h1 {
        font-size: 2.4rem;
        white-space: normal;
        width: calc(100% - 40px);
    }

    .fsg-cgu-intro p {
        font-size: 15px;
    }

    .fsg-cgu-content {
        padding-top: 35px;
    }

    .fsg-cgu-card {
        padding: 22px;
    }

    .fsg-cgu-card h2 {
        font-size: 21px;
    }
}