body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #e9ecef;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
}

header {
    background: #333;
    color: #fff;
    padding-top: 30px;
    min-height: 70px;
    border-bottom: #008cba 3px solid;
}

header h1 {
    margin: 0;
    padding: 0;
    text-align: center;
    font-size: 2em;
}

header p {
    text-align: center;
    font-size: 1.2em;
}

section {
    padding: 20px;
    margin: 20px 0;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

section h2 {
    color: #008cba;
    text-align: center;
    margin-bottom: 20px;
}

#services ul,
#why-choose-us ul {
    list-style: none;
    padding: 0;
    text-align: left;
    display: inline-block;
}

#services li,
#why-choose-us li {
    padding: 10px;
    margin: 10px 0;
    background: #f4f4f4;
    border-left: #008cba 5px solid;
}

#contact form {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

#contact label {
    display: block;
    margin-bottom: 5px;
}

#contact input[type="text"],
#contact input[type="email"],
#contact input[type="tel"],
#contact textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 20px;
}

#contact input[type="submit"] {
    background: #008cba;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
}

#contact input[type="submit"]:hover {
    background: #005f7f;
}

footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 20px;
    margin-top: 20px;
}