* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {

    font-family: Arial, sans-serif;
    line-height: 1.6;

}

/* Navigation */

nav {

    display: flex;
    justify-content: space-between;
    align-items: center;

    background: #222;
    color: white;

    padding: 20px 50px;
}

nav ul {

    display: flex;
    list-style: none;
    gap: 20px;
}

nav a {

    color: white;
    text-decoration: none;
}

/* Sections */

section {

    padding: 80px 50px;
}

/* Home */

#home {

    text-align: center;
    background: #f5f5f5;
}

#home h1 {

    font-size: 48px;
    margin-bottom: 20px;
}

#home button {

    margin-top: 20px;

    padding: 12px 25px;

    border: none;

    background: #007bff;
    color: white;

    cursor: pointer;
}

/* Services */

#services div {

    margin-top: 20px;

    padding: 20px;

    border: 1px solid #ddd;
}

/* Form */

form {

    display: flex;
    flex-direction: column;

    max-width: 500px;
}

input,
textarea {

    margin-bottom: 15px;

    padding: 12px;
}

form button {

    background: #007bff;

    color: white;

    border: none;

    padding: 12px;

    cursor: pointer;
}