body {
    font-family: Inter, sans-serif;
    margin: 0;
    background: #f8f9fc;
    color: #1a1a1a;
    scroll-behavior: smooth;
}

.hero {
    text-align: center;
    padding: 100px 0px;
    background: #0A1A2F;
    color: white;
    max-width: auto;
}

.logo {
    height: 200px;
    margin-bottom: 20px;
}

section img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
}
section p {
    width: 50%;
    text-align: left;
}
section {
    margin: 0px auto;
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* centers children horizontally */
    text-align: center;
    /* centers inline text like h2 */
}
#services ul {
    text-align: left;
    /* overrides section's text-align for the list */
    padding-left: 1.25rem;
    /* keeps bullets nicely spaced */
    margin: 0;
    /* optional */
}
#process, #contact 
{
    background: white;
}

/* Make bullet text left aligned inside the centered section */
#process ol {
    text-align: left;
    /* overrides section's text-align for the list */
    padding-left: 1.25rem;
    /* keeps bullets nicely spaced */
    margin: 0;
    /* optional */
}

h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #0A1A2F;
}

footer {
    text-align: center;
    padding: 40px;
    background: #0A1A2F;
    color: white;
}

