body{
    background:#faf8f4;
    font-family:Arial,Helvetica,sans-serif;
    color:#475569;
}

/* HERO */
.page-header{
    max-width:850px;
    margin:45px auto 55px;
    padding:0 20px;
    text-align:center;
}

.page-header h1{
    margin:0;
    font-family:"Cormorant Garamond",serif;
    font-size:clamp(2.4rem,4vw,3.2rem);
    color:#334155;
    font-weight:600;
}

.page-header h1::after{
    content:"";
    display:block;
    width:70px;
    height:3px;
    margin:18px auto;
    background:#C9A66B;
    border-radius:50px;
}

.page-header p{
    max-width:700px;
    margin:auto;
    line-height:1.8;
    color:#64748b;
}

/* CONTENEUR */
.container{
    max-width:1100px;
    margin:auto;
    padding:0 20px 80px;
}

/* CARTE */
.legal-content{
    padding:40px;
    background:#fff;
    border:1px solid #ece3d4;
    border-radius:22px;
    box-shadow:0 12px 35px rgba(0,0,0,.06);
}

/* SECTIONS */
.content-section:not(:last-child){
    margin-bottom:45px;
}

.section-title{
    margin:0 0 20px;
    font-family:"Cormorant Garamond",serif;
    font-size:2rem;
    font-weight:600;
    color:#334155;
}

.section-title::after{
    content:"";
    display:block;
    width:55px;
    height:3px;
    margin-top:12px;
    background:#C9A66B;
    border-radius:50px;
}

/* TEXTE */
.content-section p{
    margin:0 0 18px;
    line-height:1.9;
    text-align:justify;
}

.content-section strong{
    color:#334155;
}

.content-section a{
    color:#C9A66B;
    text-decoration:none;
    transition:.2s;
}

.content-section a:hover{
    text-decoration:underline;
}

/* BLOCS D'INFOS */
.contact-info{
    padding:22px;
    margin-top:20px;
    background:#faf8f4;
    border-left:4px solid #C9A66B;
    border-radius:10px;
}

.contact-info p:last-child{
    margin-bottom:0;
}

/* LISTES */
.legal-list{
    margin:20px 0;
    padding-left:22px;
}

.legal-list li{
    margin-bottom:10px;
    line-height:1.8;
}

/* MOBILE */
@media(max-width:700px){

    .page-header{
        margin:35px auto 40px;
        padding:0 18px;
    }

    .page-header h1{
        font-size:2.5rem;
    }

    .container{
        padding:0 15px 50px;
    }

    .legal-content{
        padding:25px;
        border-radius:18px;
    }

    .section-title{
        font-size:1.8rem;
    }

    .content-section p{
        text-align:left;
    }
}