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

:root {
            --primary: #d2691e;
            --secondary: #173752;
            --light: #f8f9fa;
            --grey: #667788;
            --light-grey: #e9ecef;
            --border: #dee2e6;
        }

        * { 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);
        }

        .kb-content {
            padding: 20px 0 20px;
            background-color: var(--light);
        }

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

        .card {
            background: white;
            border-radius: 16px;
            padding: 44px 48px;
            margin-bottom: 36px;
            box-shadow: 0 4px 18px rgba(0,0,0,0.04);
            border: 1px solid var(--border);
        }

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

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

        .card p {
            color: var(--grey);
            font-size: 1rem;
            line-height: 1.7;
            margin-bottom: 16px;
        }

        .card p:last-child {
            margin-bottom: 0;
        }

        .scenario-box {
            background: rgba(23,55,82,0.05);
            border-left: 4px solid var(--secondary);
            padding: 22px 26px;
            border-radius: 0 12px 12px 0;
            margin: 28px 0;
            color: var(--secondary);
            font-size: 1rem;
            line-height: 1.65;
            font-style: italic;
        }

        .pillars {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 22px;
            margin: 32px 0 0;
        }

        .pillar {
            background: var(--light);
            border-radius: 12px;
            padding: 26px 22px;
            border: 1px solid var(--border);
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

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

        .pillar h3 {
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--secondary);
            line-height: 1.3;
        }

        .pillar p {
            font-size: 0.93rem;
            color: var(--grey);
            line-height: 1.55;
            margin: 0 !important;
        }

        .highlight {
            background: rgba(210,105,30,0.08);
            border-left: 4px solid var(--primary);
            padding: 20px 24px;
            border-radius: 0 12px 12px 0;
            margin: 28px 0;
        }

        .highlight p {
            color: var(--secondary) !important;
            font-weight: 500;
            margin: 0 !important;
            font-size: 0.98rem;
        }

        .steps {
            display: grid;
            gap: 18px;
            margin: 28px 0 0;
        }

        .step {
            display: flex;
            gap: 20px;
            align-items: flex-start;
            background: var(--light);
            border-radius: 12px;
            padding: 22px 24px;
            border: 1px solid var(--border);
        }

        .step-num {
            min-width: 38px;
            height: 38px;
            background: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            font-size: 1rem;
        }

        .step-text h4 {
            font-size: 1rem;
            font-weight: 700;
            color: var(--secondary);
            margin-bottom: 5px;
        }

        .step-text p {
            font-size: 0.93rem;
            color: var(--grey);
            margin: 0 !important;
            line-height: 1.55;
        }

        .audience-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-top: 28px;
        }

        .audience-card {
            background: var(--light);
            border-left: 4px solid var(--primary);
            padding: 20px 22px;
            border-radius: 0 12px 12px 0;
        }

        .audience-card h4 {
            font-size: 1rem;
            font-weight: 700;
            color: var(--secondary);
            margin-bottom: 8px;
        }

        .audience-card p {
            font-size: 0.93rem;
            color: var(--grey);
            margin: 0 !important;
            line-height: 1.55;
        }

        .trust-row {
            display: flex;
            gap: 20px;
            margin-top: 28px;
        }

        .trust-item {
            flex: 1;
            text-align: center;
            padding: 24px 16px;
            background: var(--light);
            border-radius: 12px;
            border: 1px solid var(--border);
        }

        .trust-item svg {
            color: var(--primary);
            margin-bottom: 10px;
        }

        .trust-item h4 {
            font-size: 0.95rem;
            font-weight: 700;
            color: var(--secondary);
            margin-bottom: 6px;
        }

        .trust-item p {
            font-size: 0.87rem;
            color: var(--grey);
            margin: 0 !important;
            line-height: 1.5;
        }

        .faq-section {
            background: white;
            border-radius: 16px;
            padding: 44px 48px;
            margin-bottom: 36px;
            box-shadow: 0 4px 18px rgba(0,0,0,0.04);
            border: 1px solid var(--border);
        }

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

        .faq-item {
            margin-bottom: 20px;
            background: var(--light);
            border-left: 4px solid var(--primary);
            padding: 20px 24px;
            border-radius: 0 12px 12px 0;
        }

        .faq-item:last-child {
            margin-bottom: 0;
        }

        .faq-question {
            font-weight: 700;
            font-size: 1.05rem;
            color: var(--secondary);
            margin-bottom: 8px;
        }

        .faq-answer {
            font-size: 0.95rem;
            color: var(--grey);
            line-height: 1.6;
            margin: 0;
        }

        .faq-answer a {
            color: var(--primary);
            text-decoration: none;
        }

        .faq-answer a:hover {
            text-decoration: underline;
        }

        @media (max-width: 900px) {
            .pillars { grid-template-columns: 1fr; }
            .audience-grid { grid-template-columns: 1fr; }
            .trust-row { flex-direction: column; }
        }

        @media (max-width: 640px) {
            .card {
                padding: 28px 22px;
            }

            .card h2 {
                font-size: 1.4rem;
                flex-direction: column;
                gap: 8px;
                text-align: center;
            }

            .card-icon {
                margin: 0 auto;
            }

            .faq-section {
                padding: 28px 22px;
            }

            .faq-section h2 {
                font-size: 1.4rem;
                flex-direction: column;
                gap: 8px;
                text-align: center;
            }
        }
