body{
background:#000;
color:white;
font-family:Arial, Helvetica, sans-serif;
margin:0;
}

header{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px;
border-bottom:1px solid #222;
flex-wrap:wrap;
}

nav a{
color:white;
margin-left:20px;
text-decoration:none;
font-size:14px;
}

nav a:hover{
color:#39ff14;
}

.hero{
padding:120px 20px;
text-align:center;
background-image:url("https://images.unsplash.com/photo-1677442136019-21780ecad995");
background-size:cover;
background-position:center;
}

.hero h1{
font-size:48px;
margin-bottom:20px;
}

.hero p{
font-size:18px;
max-width:700px;
margin:auto;
color:#ddd;
}

button{
background:#39ff14;
border:none;
padding:14px 24px;
border-radius:6px;
font-weight:bold;
cursor:pointer;
margin-top:20px;
}

.section{
padding:80px 20px;
text-align:center;
max-width:1100px;
margin:auto;
}

.cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:30px;
margin-top:40px;
}

.card{
background:#111;
padding:30px;
border-radius:10px;
}

.card img{
width:100%;
border-radius:8px;
margin-bottom:15px;
}

form{
max-width:500px;
margin:auto;
display:flex;
flex-direction:column;
gap:15px;
}

input{
padding:12px;
border-radius:6px;
border:none;
}

footer{
background:#111;
padding:40px;
text-align:center;
margin-top:80px;
}

footer a{
color:#39ff14;
margin:0 10px;
text-decoration:none;
}

.consent{
font-size:12px;
color:#aaa;
text-align:left;
}

@media(max-width:600px){

.hero h1{
font-size:32px;
}

nav{
margin-top:10px;
}

}