/* 
 * Disclaimer - 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: 80px 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);
        }

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

        .intro-card {
            text-align: center;
            padding: 25px;
            background-color: var(--light);
            border-radius: 12px;
            border: 1px solid var(--light-grey);
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .intro-card-icon {
            width: 50px;
            height: 50px;
            min-width: 50px;
            background-color: rgba(210, 105, 30, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            margin-bottom: 20px;
            font-size: 24px;
        }

        .intro-card h3 {
            color: var(--secondary);
            margin-bottom: 15px;
            font-size: 1.1rem;
            font-weight: 600;
        }

        .intro-card p {
            color: var(--grey);
            font-size: 0.95rem;
            line-height: 1.5;
        }
        
        .kb-categories {
            display: grid;
            grid-template-columns: repeat(1, 1fr);
            gap: 40px;
        }
        
        .kb-category {
            background-color: transparent;
        }
        
        .kb-category h2 {
            font-size: 1.8rem;
            color: var(--secondary);
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 2px solid var(--light-grey);
        }
        
        .kb-articles {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 25px;
        }
        
        .kb-article {
            display: block;
            background-color: white;
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.03);
            transition: all 0.3s ease;
            text-decoration: none;
            color: inherit;
            border: 1px solid var(--border);
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }
        
        .kb-article:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.08);
            border-color: var(--primary);
            text-decoration: none;
        }

        .article-header {
            display: flex;
            padding: 25px;
            align-items: flex-start;
        }
        
        .article-icon {
            margin-right: 20px;
            width: 50px;
            height: 50px;
            min-width: 50px;
            background-color: rgba(210, 105, 30, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
        }
        
        .article-content {
            flex: 1;
        }
        
        .article-content h3 {
            font-size: 1.2rem;
            color: var(--secondary);
            margin-bottom: 10px;
            font-weight: 600;
            transition: color 0.2s ease;
        }
        
        .kb-article:hover .article-content h3 {
            color: var(--primary);
        }
        
        .article-content p {
            color: var(--grey);
            font-size: 0.95rem;
            margin-bottom: 0;
            line-height: 1.5;
        }
        
        .article-arrow {
            align-self: center;
            opacity: 0;
            transition: all 0.3s ease;
            color: var(--primary);
            transform: translateX(-10px);
            margin-left: 15px;
        }
        
        .kb-article:hover .article-arrow {
            opacity: 1;
            transform: translateX(0);
        }

        .article-expanded {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            border-top: 1px solid var(--light-grey);
        }

        .article-expanded.active {
            max-height: 3000px;
        }

        .expanded-content {
            padding: 30px;
            color: var(--grey);
            line-height: 1.6;
        }

        .expanded-content h4 {
            color: var(--secondary);
            margin: 20px 0 10px 0;
            font-size: 1.1rem;
            font-weight: 600;
        }

        .expanded-content ul {
            margin: 15px 0 15px 20px;
        }

        .expanded-content li {
            margin-bottom: 8px;
        }

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

        .expanded-content .warning-box {
            background-color: #fff3cd;
            border: 1px solid #ffeaa7;
            padding: 15px;
            margin: 15px 0;
            border-radius: 8px;
        }

        .expanded-content .warning-box strong {
            color: #856404;
        }
        
        .featured-article {
            position: relative;
        }
        
        .featured-tag {
            position: absolute;
            top: 15px;
            right: 15px;
            background-color: var(--primary);
            color: white;
            font-size: 0.75rem;
            padding: 4px 10px;
            border-radius: 20px;
            font-weight: 600;
        }

        .definitions-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);
        }

        .definitions-section h2 {
            font-size: 1.8rem;
            color: var(--secondary);
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 2px solid var(--light-grey);
        }

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

        .definition-item {
            background-color: var(--light);
            border-left: 4px solid var(--primary);
            padding: 20px;
            border-radius: 0 12px 12px 0;
        }

        .definition-term {
            font-weight: 600;
            color: var(--secondary);
            margin-bottom: 8px;
            font-size: 1rem;
        }

        .definition-desc {
            color: var(--grey);
            font-size: 0.9rem;
        }
        
        @media (max-width: 768px) {
    .intro-grid {
        grid-template-columns: 1fr;
    }

    .definitions-grid {
        grid-template-columns: 1fr;
    }

    .kb-articles {
        grid-template-columns: 1fr;
    }

    .article-header {
        padding: 18px 15px;
    }

    .article-icon {
        width: 44px;
        height: 44px;
        min-width: 44px;
        margin-right: 15px;
    }

    .article-content h3 {
        font-size: 1.05rem;
        word-break: break-word;
        padding-right: 0;
    }

    .article-content p {
        font-size: 0.88rem;
    }

    .featured-tag {
        position: static;
        display: inline-block;
        margin-top: 8px;
        font-size: 0.7rem;
        padding: 4px 10px;
    }

    .expanded-content {
        padding: 20px 15px;
    }
}
