body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background-color: #F5F3F0;
    color: #3A3A3A;
    line-height: 1.7;
}

/* NAVIGATIE */
nav {
    background-color: #FFFFFF;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 500;
    color: #4B7B9D;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    color: #3A3A3A;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #4B7B9D;
}

.nav-links a.active {
    color: #4B7B9D;
    font-weight: 500;
}

/* Mobile menu */
@media (max-width: 768px) {
    nav .container {
        flex-direction: column;
        gap: 16px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }
}

section {
    padding: 90px 0;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

/* TYPOGRAFIE */
h1, h2 {
    font-weight: 400;
    color: #4B7B9D;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 32px;
}

p {
    font-size: 1.05rem;
    margin-bottom: 24px;
}

em {
    font-style: italic;
    color: #6B8FAF;
}

/* HERO */
.hero {
    text-align: center;
    padding: 120px 24px;
}

.hero-sub {
    font-size: 1.4rem;
    font-weight: 300;
    color: #6B8FAF;
    margin-bottom: 32px;
}

.hero-text {
    max-width: 620px;
    margin: 0 auto 40px;
    font-weight: 300;
}

/* BUTTONS */
.btns {
    text-align: center;
}
.btn {
    display: inline-block;
    padding: 14px 30px;
    margin: 8px;
    border-radius: 8px;
    background-color: #4B7B9D;
    color: #fff;
    font-weight: 400;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #6B8FAF;
}

/* ZACHTE ACHTERGRONDEN */
.section-soft {
    background-color: #EFEDEA;
}

/* CARD */
.card {
    background: #FFFFFF;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.05);
}

/* LIJSTEN */
ul {
    list-style: none;
    padding-left: 0;
}

ul li {
    padding-left: 24px;
    position: relative;
    margin-bottom: 12px;
}

ul li:before {
    content: "•";
    color: #4B7B9D;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* QUOTES */
.quote {
    font-style: italic;
    color: #6B8FAF;
    border-left: 3px solid #4B7B9D;
    padding-left: 20px;
    margin: 24px 0;
}

/* FOOTER */
footer {
    background-color: #E8E6E2;
    text-align: center;
    padding: 60px 24px;
    font-size: 0.95rem;
    color: #555;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    h1 { font-size: 2.3rem; }
    h2 { font-size: 1.6rem; }
}
