/* 
 * Hulp_en_Contact - Complete standalone CSS
 * Alle originele styling (zonder comments)
 */

:root {
            --primary: #d2691e;
            --secondary: #173752;
            --light: #f8f9fa;
            --grey: #667788;
            --light-grey: #e9ecef;
            --border: #dee2e6;
            --success: #28a745;
            --danger-bg: #fdf2f3;
            --danger-border: #e8b4b8;
            --danger-text: #721c24;
            --info-bg: rgba(23, 55, 82, 0.06);
        }

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

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: var(--light);
        }

        .hc-page {
            padding: 48px 0 64px;
            background-color: var(--light);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .content-section {
            background: #fff;
            border-radius: 16px;
            padding: 40px;
            margin-bottom: 32px;
            box-shadow: 0 2px 16px rgba(0,0,0,0.05);
            border: 1px solid var(--border);
        }

        .content-section h2 {
            font-size: 1.75rem;
            color: var(--secondary);
            margin-bottom: 6px;
            padding-bottom: 16px;
            border-bottom: 2px solid var(--light-grey);
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .content-section .section-lead {
            color: var(--grey);
            font-size: 1.02rem;
            margin-bottom: 28px;
            margin-top: 16px;
            line-height: 1.65;
        }

        .section-icon {
            width: 42px;
            height: 42px;
            min-width: 42px;
            background: rgba(210,105,30,.12);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
        }

        .role-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 20px;
        }

        .role-card {
            background: var(--light);
            border: 1px solid var(--light-grey);
            border-radius: 12px;
            padding: 28px 24px;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            transition: box-shadow .25s, transform .25s;
        }

        .role-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 28px rgba(210,105,30,.1);
        }

        .role-card-icon {
            width: 48px;
            height: 48px;
            background: rgba(210,105,30,.12);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            margin-bottom: 18px;
        }

        .role-card h3 {
            color: var(--secondary);
            font-size: 1.05rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .role-card p {
            color: var(--grey);
            font-size: .92rem;
            line-height: 1.55;
        }

        .yn-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
        }

        .yn-block {
            border-radius: 12px;
            padding: 26px 24px;
            border-left: 5px solid transparent;
        }

        .yn-block.yes {
            background: rgba(40,167,69,.07);
            border-left-color: var(--success);
        }

        .yn-block.no {
            background: var(--danger-bg);
            border-left-color: var(--danger-border);
        }

        .yn-block-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 16px;
        }

        .yn-badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            font-size: .95rem;
            font-weight: 700;
            flex-shrink: 0;
        }

        .yn-badge.yes { background: var(--success); color: #fff; }
        .yn-badge.no  { background: #c0392b; color: #fff; }

        .yn-block h3 {
            font-size: 1rem;
            font-weight: 700;
            color: var(--secondary);
        }

        .yn-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 10px 1fr auto;
    column-gap: 8px;
    align-items: start;
}

@media (max-width: 600px) {
    .yn-list {
        grid-template-columns: 10px 1fr;
        row-gap: 4px;
    }
    
    .yn-list .li-tool {
        grid-column: 2;
        margin-top: -6px;
        margin-bottom: 10px;
    }
}

        .yn-list li {
            display: contents;
        }

        .yn-list .li-dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            margin-top: 6px;
            justify-self: center;
        }

        .yn-block.yes .li-dot { background: var(--success); }
        .yn-block.no  .li-dot { background: #c0392b; }

        .yn-list .li-text {
            font-size: .92rem;
            color: #444;
            line-height: 1.45;
            padding-bottom: 10px;
        }

        .yn-list .li-tool {
            white-space: nowrap;
            font-size: .85rem;
            color: var(--grey);
            padding-bottom: 10px;
            align-self: start;
            padding-top: 1px;
        }
        .yn-list .li-tool a {
            color: var(--secondary);
            font-weight: 600;
            text-decoration: underline;
        }
        .yn-list .li-tool:not(:empty)::before { content: '→ '; }

        .npa-notice {
            margin-top: 16px;
            padding: 12px 16px;
            background: rgba(255,255,255,.75);
            border-radius: 8px;
            font-size: .87rem;
            color: var(--danger-text);
            line-height: 1.5;
        }

        .npa-notice strong { display: block; margin-bottom: 3px; }

        .npa-notice a {
            color: var(--secondary);
            font-weight: 600;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 20px;
        }

        .contact-card {
            background: var(--light);
            border: 1px solid var(--light-grey);
            border-radius: 12px;
            padding: 26px 22px;
            display: flex;
            flex-direction: column;
            gap: 10px;
            transition: box-shadow .25s, transform .25s;
        }

        .contact-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 28px rgba(210,105,30,.1);
        }

        .contact-card-icon {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            background: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
        }

        .contact-card h3 {
            color: var(--secondary);
            font-size: 1.05rem;
            font-weight: 700;
        }

        .contact-card p {
            color: var(--grey);
            font-size: .9rem;
            line-height: 1.5;
            flex: 1;
        }

        .contact-meta {
            font-size: .8rem;
            color: var(--grey);
            font-style: italic;
        }

        .btn-primary {
            display: inline-block;
            background: var(--primary);
            color: #fff !important;
            padding: 9px 20px;
            border-radius: 24px;
            text-decoration: none;
            font-size: .88rem;
            font-weight: 600;
            transition: background .2s, transform .2s;
            align-self: flex-start;
            margin-top: 4px;
        }

        .btn-primary:hover {
            background: #b85c1a;
            transform: translateY(-1px);
            text-decoration: none;
        }

        .response-note {
            margin-top: 24px;
            background: var(--info-bg);
            border-left: 4px solid var(--secondary);
            padding: 16px 20px;
            border-radius: 0 10px 10px 0;
            font-size: .92rem;
            color: #444;
            line-height: 1.6;
        }

        .response-note strong { display: inline; color: var(--secondary); font-size: .95rem; }

        .faq-list { display: flex; flex-direction: column; gap: 10px; }

        .faq-item {
            border: 1px solid var(--border);
            border-radius: 10px;
            overflow: hidden;
        }

        .faq-question {
            width: 100%;
            background: none;
            border: none;
            padding: 18px 22px;
            text-align: left;
            font-size: .97rem;
            font-weight: 600;
            color: var(--secondary);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            transition: background .2s;
        }

        .faq-question:hover { background: var(--light); }
        .faq-question.open  { background: var(--light); }

        .faq-chevron {
            width: 26px;
            height: 26px;
            min-width: 26px;
            background: rgba(210,105,30,.12);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            transition: transform .3s;
        }

        .faq-question.open .faq-chevron { transform: rotate(180deg); }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height .35s ease;
        }

        .faq-answer.open { max-height: 600px; }

        .faq-answer-inner {
            padding: 6px 22px 20px;
            color: var(--grey);
            font-size: .92rem;
            line-height: 1.65;
            border-top: 1px solid var(--light-grey);
        }

        .faq-answer-inner a { color: var(--primary); font-weight: 600; }

        @media (max-width: 850px) {
            .yn-grid { grid-template-columns: 1fr; }
            .content-section { padding: 26px 20px; }
            .content-section h2 { font-size: 1.4rem; }
        }

        @media (max-width: 600px) {
            .role-grid, .contact-grid { grid-template-columns: 1fr; }
            .content-section h2 { flex-direction: column; align-items: flex-start; gap: 8px; }
        }

@media (max-width: 600px) {
    .role-grid, .contact-grid { grid-template-columns: 1fr; }
    .content-section h2 { flex-direction: column; align-items: flex-start; gap: 8px; }
    
    .yn-list .li-text {
        word-break: break-word;
        overflow-wrap: break-word;
    }
}
