*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

body{
    background:#ffffff;
    color:#111;
}

.navbar{
    width:100%;
    padding:20px 8%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    border-bottom:1px solid #eee;
}

.logo{
    display:flex;
    align-items:center;
    gap:12px;
}

.logo img{
    width:45px;
}

.logo span{
    font-size:28px;
    font-weight:bold;
}

nav{
    display:flex;
    gap:35px;
}

nav a{
    text-decoration:none;
    color:#222;
    font-weight:600;
}

.hero{
    width:100%;
    min-height:85vh;
    padding:70px 8%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:60px;
}

.hero-text{
    max-width:600px;
}

.hero-text h1{
    font-size:58px;
    margin-bottom:25px;
}

.hero-text p{
    font-size:22px;
    line-height:1.8;
    color:#555;
    margin-bottom:40px;
}

.button{
    display:inline-block;
    background:#000;
    color:#fff;
    text-decoration:none;
    padding:18px 36px;
    border-radius:12px;
    font-size:18px;
    font-weight:bold;
}

.button:hover{
    background:#222;
}

.hero-image img{
    width:420px;
    max-width:100%;
}