* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.topbar {
    padding: 15px 60px;
    text-align: right;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.topbar a {
    color: #fff;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    background: #a8156f;
    padding: 8px 18px;
    border-radius: 20px;
    border: 1px solid #a8156f;
    transition: background 0.2s, transform 0.2s;
}

.topbar a:hover {
    background: #8c1260;
    border-color: #8c1260;
    transform: translateY(-1px);
}

.header {
    background: linear-gradient(135deg, #fff 0%, #fafafa 100%);
    color: #333;
    padding: 40px 60px 80px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.header .logo {
    max-width: 280px;
    height: auto;
}

.header .tagline {
    font-size: 1.3rem;
    font-style: italic;
    color: #555;
    background: rgba(168,21,111,0.08);
    padding: 10px 30px;
    border-radius: 30px;
    border: 1px solid rgba(168,21,111,0.2);
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 60px 0;
}

.section-title {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 3px solid #a8156f;
    display: inline-block;
}

.section-text {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.8;
}

.hoe-wij-kijken {
    background: #fafafa;
}

.intro {
    background: white;
    padding: 50px;
    border-radius: 10px;
    margin-top: -40px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.intro-hoofdtekst {
    font-size: 1.4rem;
    color: #333;
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 1.6;
}

.intro-subtekst {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
}

.intro strong {
    color: #a8156f;
}

.diensten-grid {
    display: grid;
    gap: 20px;
}

.dienst-item {
    background: white;
    padding: 25px 30px;
    border-radius: 8px;
    border-left: 4px solid #a8156f;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.2s, box-shadow 0.2s;
}

.dienst-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.dienst-item strong {
    color: #a8156f;
}

.framework-section {
    background: linear-gradient(135deg, #a8156f 0%, #8c1260 100%);
    color: white;
    padding: 60px 0;
}

.framework-section .section-title {
    color: white;
    border-bottom-color: #e87dc0;
}

.framework-section .section-intro {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.framework-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.framework-item {
    background: rgba(255,255,255,0.15);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: background 0.2s;
}

.framework-item:hover {
    background: rgba(255,255,255,0.25);
}

.framework-item h3 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.framework-item p {
    font-size: 0.95rem;
    opacity: 0.9;
}

.filosofie {
    background: linear-gradient(135deg, #fdf2f8 0%, #fff 100%);
    padding: 60px 0;
}

.quote-block {
    background: white;
    padding: 50px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 30px rgba(0,0,0,0.06);
    border-top: 4px solid #a8156f;
}

.quote-intro {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.8;
}

.quote-main {
    font-size: 1.5rem;
    color: #333;
    font-style: italic;
    line-height: 2;
}

.contact-section {
    background: white;
    padding: 60px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.contact-item {
    padding: 30px;
    background: #fafafa;
    border-radius: 10px;
    transition: transform 0.2s;
}

.contact-item:hover {
    transform: translateY(-3px);
}

.contact-item .label {
    font-size: 0.85rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.contact-item .value {
    font-size: 1.2rem;
    color: #333;
    font-weight: 600;
}

.contact-item a {
    color: #a8156f;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.footer {
    background: #a8156f;
    color: white;
    text-align: center;
    padding: 30px;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .topbar {
        padding: 15px 20px;
    }

    .header {
        flex-direction: column;
        padding: 30px 20px 60px;
        text-align: center;
        gap: 20px;
    }

    .header .logo {
        max-width: 220px;
    }

    .header .tagline {
        font-size: 1rem;
        padding: 8px 20px;
    }

    .intro {
        padding: 30px 20px;
        margin-top: -30px;
    }

    .quote-block {
        padding: 30px 20px;
    }

    .quote-block p {
        font-size: 1.2rem;
    }
}
