* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    line-height: 1.6;
    color: #fff;
    background-color: #111;
}

header {
    background-color: #000;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8em;
    font-weight: bold;
    color: #f94d00;
}

nav a {
    color: #fff;
    margin-left: 20px;
    text-decoration: none;
    font-weight: 600;
}

.hero {
    text-align: center;
    padding: 100px 20px;
    background: url('https://images.unsplash.com/photo-1594737625785-c402ad706ba5') no-repeat center center/cover;
}

.hero h1 {
    font-size: 3em;
    margin-bottom: 20px;
    color: #fff;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.btn {
    background-color: #f94d00;
    padding: 15px 30px;
    text-decoration: none;
    color: #fff;
    border-radius: 5px;
    font-weight: bold;
}

.services, .about, .contact {
    padding: 60px 20px;
    text-align: center;
    background-color: #1a1a1a;
}

.services h2, .about h2, .contact h2 {
    color: #f94d00;
    margin-bottom: 20px;
}

.service-box {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.service-box div {
    background-color: #222;
    padding: 20px;
    border-radius: 10px;
    width: 300px;
}

.contact form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact input, .contact textarea {
    width: 300px;
    margin-bottom: 15px;
    padding: 10px;
    border: none;
    border-radius: 5px;
}

.contact button {
    background-color: #f94d00;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #000;
    color: #999;
}
