*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial, Helvetica, sans-serif;
}


body{
background:#050505;
color:white;
}


header{
padding:25px 8%;
border-bottom:1px solid #222;
}


nav{
display:flex;
justify-content:space-between;
align-items:center;
}


.logo{
font-size:24px;
font-weight:bold;
}


ul{
display:flex;
gap:30px;
list-style:none;
}


a{
color:white;
text-decoration:none;
}


.hero{
min-height:80vh;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
text-align:center;
padding:40px;
}


.hero h1{
font-size:55px;
max-width:900px;
}


.hero p{
margin-top:25px;
color:#aaa;
font-size:20px;
max-width:600px;
}


.button{
margin-top:35px;
background:white;
color:black;
padding:15px 35px;
border-radius:30px;
font-weight:bold;
}


.section{
padding:80px 10%;
text-align:center;
}


.cards{
display:flex;
justify-content:center;
gap:30px;
margin-top:40px;
}


.card{
background:#111;
padding:35px;
border-radius:20px;
width:300px;
border:1px solid #222;
}


.card p{
color:#aaa;
margin-top:15px;
}


footer{
padding:30px;
text-align:center;
border-top:1px solid #222;
}


footer a{
margin:10px;
color:#aaa;
}