*{

margin:0;
padding:0;
box-sizing:border-box;

}

body{

font-family:'Inter',sans-serif;
color:white;
overflow-x:hidden;

}

#bgVideo{

position:fixed;
inset:0;

width:100%;
height:100vh;

object-fit:cover;

z-index:-3;

}

.overlay{

position:fixed;
inset:0;

background:rgba(0,0,0,.65);

z-index:-2;

}

.container{

width:min(650px,92%);

margin:60px auto;

text-align:center;

}

.logo{

width:180px;

margin-bottom:25px;

}

h1{

font-family:'Cormorant Garamond',serif;

font-size:52px;

margin-bottom:10px;

}

.subtitle{

color:#ddd;

margin-bottom:45px;

}

.card{

background:rgba(255,255,255,.08);

backdrop-filter:blur(20px);

border:1px solid rgba(255,255,255,.12);

border-radius:28px;

padding:25px;

}

.item{

display:flex;

align-items:center;

gap:20px;

padding:22px;

border-radius:18px;

margin-bottom:15px;

text-decoration:none;

color:white;

background:rgba(255,255,255,.04);

transition:.35s;

}

.item:hover{

background:rgba(255,255,255,.10);

transform:translateY(-3px);

}

.icon{

font-size:34px;

width:55px;

}

.item h3{

margin-bottom:5px;

color:#D8C6A5;

}

footer{

margin:40px 0;

color:#bbb;

}

@media(max-width:768px){

.logo{

width:130px;

}

h1{

font-size:38px;

}

.item{

padding:18px;

}

.icon{

font-size:28px;

}

}