*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f7f9fc;
    color:#222;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* Header */

header{
    background:#ffffff;
    box-shadow:0 2px 10px rgba(0,0,0,.08);
    position:sticky;
    top:0;
    z-index:1000;
}

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    height:80px;
}

.logo a{
    text-decoration:none;
    color:#0d6efd;
    font-size:32px;
    font-weight:700;
}

.menu{
    list-style:none;
    display:flex;
    gap:30px;
}

.menu a{
    text-decoration:none;
    color:#333;
    font-weight:500;
}

.menu a:hover{
    color:#0d6efd;
}

.buttons{
    display:flex;
    gap:15px;
}

.login{
    text-decoration:none;
    color:#0d6efd;
    border:2px solid #0d6efd;
    padding:10px 20px;
    border-radius:6px;
}

.apply{
    text-decoration:none;
    background:#0d6efd;
    color:#ffffff;
    padding:10px 20px;
    border-radius:6px;
}

/* Hero Section */

.hero{
    padding:100px 0;
    text-align:center;
}

.hero h1{
    font-size:52px;
    margin-bottom:20px;
}

.hero p{
    font-size:20px;
    color:#666;
    max-width:700px;
    margin:0 auto 30px;
}

.hero-btn{
    display:inline-block;
    text-decoration:none;
    background:#0d6efd;
    color:#fff;
    padding:15px 35px;
    border-radius:8px;
    font-size:18px;
}