*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial, Helvetica, sans-serif;
}

body{
background:#f8f9fb;
color:#222;
line-height:1.6;
}

header{
background:#0f172a;
padding:18px 8%;
display:flex;
justify-content:space-between;
align-items:center;
}

.logo{
display:flex;
flex-direction:column;
}

.logo-main{
font-size:30px;
font-weight:800;
color:#d4af37;
}

.logo-tag{
font-size:10px;
color:white;
letter-spacing:1px;
}

nav a{
color:white;
text-decoration:none;
margin-left:20px;
font-weight:600;
}

.hero{
height:90vh;
background:
linear-gradient(rgba(0,0,0,.5),rgba(0,0,0,.5)),
url('https://images.unsplash.com/photo-1505693416388-ac5ce068fe85?auto=format&fit=crop&w=1600&q=80');
background-size:cover;
background-position:center;
display:flex;
justify-content:center;
align-items:center;
text-align:center;
color:white;
}

.hero-content h1{
font-size:60px;
margin-bottom:20px;
}

.hero-content p{
font-size:22px;
margin-bottom:20px;
}

.btn{
display:inline-block;
background:#d4af37;
padding:15px 35px;
color:white;
text-decoration:none;
border-radius:5px;
}

.section{
padding:80px 8%;
}

.section-title{
font-size:40px;
text-align:center;
margin-bottom:40px;
}

footer{
background:#020617;
color:white;
padding:40px;
text-align:center;
margin-top:50px;
}