body{
margin:0;
font-family:Arial, Helvetica, sans-serif;
}

.navbar{
background:#222;
color:white;
padding:18px 20px;
}

.nav-container{
max-width:1100px;
margin:auto;
display:flex;
justify-content:space-between;
align-items:center;
}

.logo{
display:flex;
align-items:center;
font-size:22px;
font-weight:bold;
}

.logo img{
height:60px;
width:auto;
margin-right:12px;
}

nav ul{
list-style:none;
display:flex;
gap:20px;
margin:0;
padding:0;
}

nav a{
color:white;
text-decoration:none;
font-weight:500;
}
.hero{
height:450px;
background:#444;
color:white;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
}

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

.hero-content p{
font-size:20px;
}

.cta-button{
display:inline-block;
margin-top:20px;
padding:12px 25px;
background:#e09f3e;
color:white;
text-decoration:none;
border-radius:5px;
}
