
body{
margin:0;
font-family:Arial,Helvetica,sans-serif;
background:#0a0a0a;
color:white;
}

.hero{
position:relative;
height:100vh;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
overflow:hidden;
}

.hero-img{
position:absolute;
width:100%;
height:100%;
object-fit:cover;
}

.hero-content{
position:relative;
background:rgba(0,0,0,0.55);
padding:40px;
border-radius:20px;
}

.hero h1{
font-size:70px;
margin-bottom:10px;
}

.hero p{
font-size:22px;
opacity:0.9;
}

.buttons{
margin-top:30px;
}

.btn{
display:inline-block;
padding:14px 28px;
margin:10px;
border-radius:10px;
background:#222;
color:white;
text-decoration:none;
font-weight:bold;
}

.btn.red{
background:#e11d48;
}

.btn.big{
font-size:22px;
padding:18px 40px;
}

.about{
max-width:900px;
margin:auto;
padding:80px 20px;
text-align:center;
}

.about h2{
font-size:40px;
margin-bottom:20px;
}

.about ul{
list-style:none;
padding:0;
}

.about li{
padding:10px;
font-size:18px;
}

.cta{
background:#111;
text-align:center;
padding:80px 20px;
}

.cta h2{
font-size:36px;
margin-bottom:30px;
}

footer{
text-align:center;
padding:20px;
font-size:14px;
opacity:0.6;
}
