body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    line-height: 1.6;
}
header {
    background-color: #00008B;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 40px;
}
nav {
    display: flex;
    gap: 20px;
}
nav a {
    color: white;
    text-decoration: none;
    font-weight: normal;
}

h3{
    color: #003399;
}

.contact-info {
    display: flex;
    gap: 20px;
    color: inherit; 
    text-decoration: none;
}

.contact-info a {
    color: inherit; 
    text-decoration: none;
}

.banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
}
.banner img.logo {
    height: 20vh;
}
.banner .title {
    text-align: center;
}
.banner .title h1 {
    margin: 0;
    font-size: 24px;
}
.banner .title p {
    margin: 0;
    font-size: 14px;
    color: #555;
}
.banner img.service-image {
    height: 40vh;
}
.container {
    padding: 20px;
    max-width: 1200px;
    margin: auto;
}
h2 {
    color: #003399;
    text-align: center;
    margin-bottom: 10px;
}
.section {
    margin: 40px 0;
    padding: 20px;
}

.sectiontext{
        display: flex;
        flex-direction: column;
        align-items: flex-start;
}

.lijst{
    display: flex;
    flex-direction: column-reverse;
}

.specialisaties, .kleuradvies {
    display: flex;
}
.specialisaties div, .kleuradvies div {
    width: 45%;
}

.footer {
    background-color: #003399;
    display: flex;
    color: white;
    padding: 20px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footertext p{
    margin: 0px;
}

.footer-image{
    height: 10vw;
}

.footertext a{
    color: inherit;
    text-decoration: none;
}

ul {
    list-style-type: square;
    padding-left: 20px;
}

@media (max-width: 800px) {
    .footer-image {
        display: none;
    }

    .service-image{
        display: none;
    }

    .banner img.logo{
        height: 12vw;
    }

    .banner{
        display: flex;
        justify-content: unset;
        align-items: center;
        gap: 10vw;
        padding: 0px 0px;
    }

    header{
        background-color: #00008B;
        color: white;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 10px 40px;
    }

    .specialisaties, .kleuradvies {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        font-size: medium;
    }

}