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

body{
    line-height:1.6;
}

.hero{
    height:100vh;
    background:url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?q=80&w=1974&auto=format&fit=crop') center/cover;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
}

.overlay{
    background:rgba(0,0,0,0.6);
    padding:40px;
    color:white;
    border-radius:10px;
}

.overlay h1{
    font-size:3rem;
    margin-bottom:20px;
}

.overlay p{
    font-size:1.2rem;
    margin-bottom:20px;
}

.btn{
    display:inline-block;
    padding:12px 25px;
    background:#f4b400;
    color:black;
    text-decoration:none;
    border-radius:5px;
    font-weight:bold;
}

section{
    padding:60px 20px;
    text-align:center;
}

.services{
    background:#f5f5f5;
}

.service-box{
    margin:20px auto;
    max-width:500px;
    background:white;
    padding:20px;
    border-radius:10px;
    box-shadow:0 2px 10px rgba(0,0,0,0.1);
}

.contact{
    background:#222;
    color:white;
}

footer{
    background:black;
    color:white;
    text-align:center;
    padding:20px;
}
