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

body{
    font-family:Arial,Helvetica,sans-serif;
    background:#f5f5f5;
    color:#333;
    line-height:1.6;
}

header{
    background:#ffffff;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 8%;
    box-shadow:0 2px 10px rgba(0,0,0,.1);
    position:sticky;
    top:0;
}

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

.logo img{
    width:60px;
}

.logo h2{
    font-size:28px;
}

nav a{
    text-decoration:none;
    color:#333;
    margin-left:25px;
    font-weight:bold;
}

nav a:hover{
    color:#ff6600;
}

.hero{
    background:linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)),
    url("images/work1.jpeg");
    background-size:cover;
    background-position:center;
    color:#fff;
}
.hero{
    padding:120px 20px;
}

.hero-content{
    max-width:700px;
}

.hero h1{
    font-size:56px;
    font-weight:700;
}

.hero p{
    max-width:700px;
    font-size:22px;
}

.btn{
    display:inline-block;
    background:#ff6600;
    color:#fff;
    text-decoration:none;
    padding:12px 28px;
    border-radius:8px;
    margin:10px;
}

.btn:hover{
    background:#e65c00;
}

.services,
.contact{
    max-width:1000px;
    margin:50px auto;
    background:#fff;
    padding:35px;
    border-radius:10px;
    box-shadow:0 0 10px rgba(0,0,0,.08);
}

.services h2,
.contact h2{
    margin-bottom:20px;
    color:#ff6600;
}

.services ul{
    margin-left:20px;
}

.services li{
    margin:10px 0;
}

footer{
    background:#222;
    color:#fff;
    text-align:center;
    padding:20px;
    margin-top:50px;
}