
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #fff;
    color: #222;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #000;
}

.logo {
    height: 80px;
}

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

nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

section {
    padding: 40px 20px;
}

#home {
    background: url('images/background.jpg') no-repeat center center;
    background-size: cover;
    color: white;
    padding: 100px 20px;
}
}

h1, h2 {
    color: #000;
}

form {
    display: flex;
    flex-direction: column;
    max-width: 500px;
}

form label, form input, form textarea {
    margin-bottom: 10px;
}

button {
    background: #000;
    color: white;
    padding: 10px;
    border: none;
    cursor: pointer;
}

footer {
    text-align: center;
    padding: 20px;
    background: #eee;
}
