/* 
 * Peppol_Integratie_voor_Software_Aanbieders - 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;
        }

        .knowledge-base-content {
            padding: 20px 0;
            background-color: var(--light);
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

.intro-section {
    background-color: white;
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    border: 1px solid var(--border);
    text-align: left;
}

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

.intro-section p:last-of-type {
    margin-bottom: 0;
}

.intro-section .text-center {
    text-align: center;
    margin-top: 25px;
}

.intro-section p {
        font-size: 0.98rem;
        line-height: 1.65;
    }
        
        .content-section {
            background-color: white;
            border-radius: 15px;
            padding: 40px;
            margin-bottom: 40px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.03);
            border: 1px solid var(--border);
        }

        .content-section:last-child {
            margin-bottom: 0;
        }

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

        .section-icon {
            width: 40px;
            height: 40px;
            background-color: rgba(210, 105, 30, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            flex-shrink: 0;
        }

        .lead-text {
            font-size: 1.1rem;
            color: var(--grey);
            text-align: center;
            margin-bottom: 30px;
            font-weight: 500;
        }

        .content-text {
            color: var(--grey);
            font-size: 1rem;
            margin-bottom: 20px;
            line-height: 1.7;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin-top: 30px;
        }

        .benefit-item {
            background-color: var(--light);
            padding: 25px;
            border-radius: 12px;
            border: 1px solid var(--light-grey);
            transition: all 0.3s ease;
        }

        .benefit-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
            border-color: var(--primary);
        }

        .benefit-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
        }

        .benefit-icon {
            width: 50px;
            height: 50px;
            background-color: rgba(210, 105, 30, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            flex-shrink: 0;
        }

       .benefit-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary);
    margin: 0;
    word-break: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

        .benefit-desc {
            color: var(--grey);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-top: 30px;
        }

        .feature-item {
            background-color: var(--light);
            padding: 30px;
            border-radius: 12px;
            border: 1px solid var(--light-grey);
            transition: all 0.3s ease;
        }

        .feature-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
            border-color: var(--primary);
        }

        .feature-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
        }

        .feature-icon {
            width: 50px;
            height: 50px;
            background-color: rgba(210, 105, 30, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            flex-shrink: 0;
        }

        .feature-title {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--secondary);
            margin: 0;
        }

        .feature-desc {
            color: var(--grey);
            font-size: 1rem;
            line-height: 1.6;
        }

        .process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin-top: 30px;
        }

        .step-item {
            background-color: white;
            padding: 25px;
            border-radius: 12px;
            border: 1px solid var(--border);
            position: relative;
            text-align: center;
        }

        .step-number {
            width: 40px;
            height: 40px;
            background-color: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.1rem;
            margin: 0 auto 15px;
        }

        .step-title {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--secondary);
            margin-bottom: 10px;
        }

        .step-desc {
            color: var(--grey);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        .content-cta-button {
            display: inline-block;
            background-color: var(--primary);
            color: white !important;
            padding: 12px 25px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            margin: 10px;
            text-align: center;
        }

        .content-cta-button:hover {
            background-color: #b85c1a;
            transform: translateY(-2px);
            text-decoration: none;
        }

        .content-cta-button-secondary {
            display: inline-block;
            background-color: transparent;
            color: var(--primary) !important;
            padding: 12px 25px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            margin: 10px;
            text-align: center;
            border: 2px solid var(--primary);
        }

        .content-cta-button-secondary:hover {
            background-color: var(--primary);
            color: white !important;
            transform: translateY(-2px);
            text-decoration: none;
        }

        .text-center {
            text-align: center;
        }

        .highlight-box {
            background-color: rgba(210, 105, 30, 0.05);
            border-left: 4px solid var(--primary);
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }

        .highlight-box strong {
            color: var(--secondary);
        }

@media (max-width: 768px) {
    .benefits-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .content-section,
    .intro-section {
        padding: 25px;
    }

    .benefit-title,
    .feature-title {
        font-size: 1rem;
        word-break: break-word;
    }

.intro-section p {
        font-size: 0.98rem;
        line-height: 1.65;
    }

            .content-section h2 {
                font-size: 1.5rem;
                flex-direction: column;
                gap: 10px;
                text-align: center;
            }

            .section-icon {
                margin: 0 auto;
            }
        }

        @media (max-width: 1024px) and (min-width: 769px) {
            .benefits-grid,
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
