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

header{
background:#000;
padding:15px 40px;
position:relative;
z-index:10;
}

.container{
display:flex;
justify-content:space-between;
align-items:center;
}

.logo{
height:60px;
}

nav a{
color:white;
margin-left:20px;
text-decoration:none;
font-weight:bold;
}

nav a:hover{
color:#c40000;
}

.hero{
background:url("images/hero.jpg") center/cover no-repeat;
height:80vh;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
}

.overlay{
background:rgba(0,0,0,0.6);
padding:40px;
}

.btn{
display:inline-block;
margin-top:20px;
padding:12px 25px;
background:#c40000;
color:white;
text-decoration:none;
font-weight:bold;
}

section{
padding:60px 40px;
text-align:center;
}

.cards{
display:flex;
justify-content:center;
gap:30px;
flex-wrap:wrap;
}

.card{
background:#1c1c1c;
padding:30px;
width:280px;
border:1px solid #333;
}

.card img{
width:100%;
margin-bottom:15px;
}

footer{
background:#000;
padding:20px;
text-align:center;
margin-top:40px;
}