body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f3f1ec;
    color: #333;
}

header {
    background-color: #3e2723;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
}

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

.logo img {
    height: 100px;
    margin-right: 10px;
}

nav a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
    font-weight: bold;
}

nav a:hover {
    text-decoration: underline;
}

.hero {
    background: url('https://images.unsplash.com/photo-1509021436665-8f07dbf5bf1d') center/cover no-repeat;
    color: black;
    text-align: center;
    padding: 100px 20px;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.hero .btn {
    background-color: #8d6e63;
    padding: 10px 20px;
    color: black;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
}

.hero .btn:hover {
    background-color: #6d4c41;
}

#services {
    padding: 50px 20px;
    text-align: center;
}

.service-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.service {
    background-color: #fff;
    border: 2px solid #8d6e63;
    border-radius: 8px;
    padding: 20px;
    width: 250px;
}

#contact {
    padding: 40px 20px;
    background-color: #d7ccc8;
    text-align: center;
}

footer {
    background-color: #3e2723;
    color: white;
    text-align: center;
    padding: 15px;
}
