/* styles.css */

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
}

header {
    background: #333;
    color: #fff;
    padding: 1rem 0;
}

header .logo {
    float: left;
    width: 150px;
}

header nav {
    float: right;
    margin-top: 10px;
}

header nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

header nav ul li {
    display: inline;
    margin-left: 20px;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

header nav ul li a:hover {
    text-decoration: underline;
}

.section {
    padding: 2rem 0;
    background-color: #fff;
    margin-bottom: 1rem;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.section h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: #333;
}

.section p, .section ul, .section ol {
    text-align: center;
}

#services .service {
    margin-bottom: 1.5rem;
}

#services .service h3 {
    color: #0056b3;
    text-align: center;
}

#services .service p {
    text-align: left;
    margin: 0 10%;
}

#process ol {
    list-style: none;
    padding: 0;
}

#process ol li {
    text-align: left;
    margin: 0 10%;
    margin-bottom: 1.5rem;
}

#process h4 {
    color: #0056b3;
    margin-bottom: 0.5rem;
        text-align: center;
}

form {
    max-width: 600px;
    margin: auto;
}

form label {
    display: block;
    margin-bottom: 5px;
}

form input, form textarea, form button {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
}

form button {
    background: #333;
    color: #fff;
    border: none;
    cursor: pointer;
}

form button:hover {
    background: #555;
}

footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
    margin-top: 2rem;
}

footer p {
    margin: 0.5rem 0;
}

footer a {
    color: #fff;
    text-decoration: none;
}

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