/* Algemene opmaak */

/* Container */
.wrap {
    max-width: 1000px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 6px;
}

/* Interne wrapper */
.wrap-ph {
    width: 100%;
}

/* Titels */
h2 {
    font-size: 1.2em;
    color: hsl(225, 63%, 45%);
    margin-top: 40px;
    margin-bottom: 15px;
    border-bottom: 1px solid hsla(225, 63%, 45%, .5);
    padding-bottom: 5px;
}

h3 {
    font-size: 1.2em;
    color: #333;
    margin-top: 30px;
    margin-bottom: 10px;
    font-weight: normal;
}

/* Lijsten */
ul {
    margin-left: 20px;
    margin-bottom: 20px;
    padding-left: 0;
    list-style-type: disc;
}

ul li {
    margin-bottom: 12px;
}

/* Links (indien gebruikt) */
a {
    color: #0066cc;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Responsiviteit (optioneel) */
@media (max-width: 600px) {
    .wrap {
        padding: 25px 20px;
    }

    h2 {
        font-size: 1.3em;
    }

    h3 {
        font-size: 1.1em;
    }
}
