/* Algemene stijlregels */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f2f2f2;
    color: #333;
    line-height: 1.6;
    font-size: 18px;
}

/* Header styling */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background-color: #f2f2f2;
    border-bottom: 1px solid #ccc;
}

header h1 {
    font-size: 3em;
    font-weight: bold;
    color: #000;
}

header p {
    font-size: 1.2em;
    color: #000;
}

/* Circle styling */
.circle {
    width: 100px;
    height: 100px;
    background-color: #ff8000;
    border-radius: 50%;
    position: absolute;
    z-index: -1;
}

/* Main content */
main {
    max-width: 1200px;
    margin: 50px auto;
    padding: 20px;
}

section {
    margin-bottom: 50px;
    position: relative;
    padding-left: 120px;
}

section h2 {
    font-size: 2.5em;
    color: #000;
    font-weight: bold;
    margin-bottom: 20px;
}

section p {
    font-size: 1.1em;
    color: #333;
}

ul {
    list-style-type: none;
    padding-left: 0;
}

ul li {
    background: #ecf0f1;
    margin: 10px 0;
    padding: 10px;
    font-size: 1.1em;
    border-left: 5px solid #000;
}

/* Contact sectie */
#contact a {
    color: #000;
    text-decoration: none;
    border-bottom: 2px solid #000;
}

#contact a:hover {
    color: #ff8000;
    border-bottom-color: #ff8000;
}

/* Footer styling */
footer {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 20px;
    font-size: 0.9em;
}

/* Responsive design */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: flex-start;
    }

    main {
        padding: 15px;
    }

    section h2 {
        font-size: 2em;
    }

    ul li {
        font-size: 1em;
    }

    section {
        padding-left: 50px;
    }
}
