body{
    margin:0;
    font-family:Arial, sans-serif;
}

.header{
    background:#0F3B82;
    color:white;
    padding:20px 40px;
}

.header-content{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo{
    font-size:42px;
    font-weight:bold;
}

.nav a{
    color:white;
    text-decoration:none;
    margin-left:20px;
}

.hero{
    min-height:100vh;

    background:url('/images/hero.jpg');
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    display:flex;
    justify-content:center;
    align-items:center;
}

.hero-content{
    text-align:center;
    color:white;

    background:rgba(0,0,0,0.45);

    padding:40px;
    border-radius:15px;
}

.hero h1{
    font-size:64px;
    margin-bottom:20px;
}

.hero p{
    font-size:26px;
    margin-bottom:25px;
}

.btn{
    display:inline-block;

    background:#ff6b00;
    color:white;

    padding:15px 30px;

    text-decoration:none;

    border-radius:8px;

    margin:10px;
}
``