*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial,Helvetica,sans-serif;
    background:#f5f5f5;
    color:#222;
}

a{
    text-decoration:none;
}

.container{
    width:92%;
    max-width:1280px;
    margin:auto;
}

/* TOPBAR */

.topbar{
    background:#0b6b35;
    color:#fff;
    height:42px;
}

.topbar .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    height:42px;
}

.top-right a{
    color:#fff;
    margin-left:18px;
    font-size:18px;
}

/* HEADER */

header{
    background:#fff;
    box-shadow:0 2px 10px rgba(0,0,0,.08);
}

.header-area{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 0;
}

.logo h1{
    color:#0b6b35;
    font-size:46px;
    font-weight:800;
}

.logo span{
    display:block;
    margin-top:5px;
    color:#555;
}

nav ul{
    display:flex;
    list-style:none;
    gap:28px;
}

nav a{
    color:#222;
    font-weight:700;
    transition:.25s;
}

nav a:hover{
    color:#0b6b35;
}

/* HERO */

.hero{
    height:720px;
    background:url('/assets/images/hero.jpg') center center/cover no-repeat;
    position:relative;
}

.overlay{
    width:100%;
    height:100%;
    background:rgba(0,0,0,.45);
}

.hero-content{
    color:#fff;
    padding-top:180px;
}

.hero h2{
    font-size:70px;
    font-weight:900;
}

.hero h3{
    font-size:42px;
    margin:10px 0 25px;
}

.hero p{
    font-size:24px;
    max-width:650px;
    line-height:1.6;
}

.buttons{
    margin-top:40px;
}

.btn-green{
    background:#0b6b35;
    color:#fff;
    padding:18px 40px;
    border-radius:8px;
    margin-right:20px;
    display:inline-block;
    font-weight:700;
}

.btn-outline{
    border:2px solid #fff;
    color:#fff;
    padding:18px 40px;
    border-radius:8px;
    display:inline-block;
    font-weight:700;
}

.btn-green:hover{
    background:#0a5f2f;
}

.btn-outline:hover{
    background:#fff;
    color:#0b6b35;
}
