/* ==========================================================
   LUXE AI
   LEGAL PAGES
========================================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    background:#fafafa;

    color:#222;

    font-family:"Cormorant Garamond",serif;

    line-height:1.8;

}

.container{

    width:min(900px,92%);

    margin:auto;

}

header{

    background:#ffffff;

    border-bottom:1px solid #ececec;

    padding:24px 0;

}

.logo{

    font-family:"Playfair Display",serif;

    font-size:34px;

    color:#111;

    text-decoration:none;

}

.logo span{

    color:#D4AF37;

}

main{

    padding:70px 0;

}

.card{

    background:#ffffff;

    padding:50px;

    border-radius:18px;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

}

h1{

    font-family:"Playfair Display",serif;

    font-size:46px;

    margin-bottom:25px;

}

h2{

    margin-top:35px;

    margin-bottom:12px;

    font-size:28px;

}

p,li{

    font-size:22px;

    color:#444;

}

ul{

    margin-left:28px;

    margin-bottom:25px;

}

.button{

    display:inline-block;

    margin-top:40px;

    padding:16px 34px;

    background:#D4AF37;

    color:#111;

    text-decoration:none;

    border-radius:999px;

    font-weight:bold;

    transition:.3s;

}

.button:hover{

    background:#111;

    color:#D4AF37;

}

footer{

    text-align:center;

    padding:35px;

    color:#888;

    font-size:17px;

}

@media(max-width:768px){

.card{

    padding:30px;

}

h1{

    font-size:36px;

}

h2{

    font-size:25px;

}

p,li{

    font-size:20px;

}

}