/* 
 * Veelgestelde_Vragen_over_e-facturatie - 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;
        }
        
        .faq-main-section {
            background-color: white;
            border-radius: 15px;
            padding: 60px 40px;
            margin-bottom: 40px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.03);
            border: 1px solid var(--border);
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            border-bottom: 1px solid var(--light-grey);
            padding: 0;
            cursor: pointer;
        }

        .faq-item:last-child {
            border-bottom: none;
        }

        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
            font-size: 1.1rem;
            font-weight: 500;
            color: var(--secondary);
            transition: all 0.3s ease;
        }

        .faq-item:hover .faq-question {
            color: var(--primary);
        }

        .faq-toggle {
            font-size: 1.5rem;
            font-weight: 300;
            color: var(--primary);
            transition: transform 0.3s ease;
            min-width: 30px;
            text-align: center;
        }

        .faq-toggle.active {
            transform: rotate(45deg);
        }

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

        .faq-answer.active {
            max-height: 2000px;
            padding-bottom: 20px;
        }

        .faq-answer p {
            color: var(--grey);
            line-height: 1.6;
            margin-bottom: 15px;
        }

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

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

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

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

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

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

        .quick-link-icon {
            width: 40px;
            height: 40px;
            background-color: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 18px;
            margin: 0 auto 15px;
        }

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

        .quick-link-desc {
            color: var(--grey);
            font-size: 0.9rem;
            margin-bottom: 15px;
            line-height: 1.4;
        }

        .quick-link-button {
            display: inline-block;
            background-color: var(--primary);
            color: white !important;
            padding: 8px 16px;
            border-radius: 20px;
            text-decoration: none;
            font-size: 0.85rem;
            font-weight: 500;
            transition: background 0.3s ease;
        }

        .quick-link-button:hover {
            background-color: #b85c1a;
            text-decoration: none;
        }

        .section-icon {
            width: 40px;
            height: 40px;
            background-color: rgba(210, 105, 30, 0.1);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            flex-shrink: 0;
        }
        
        @media (max-width: 768px) {
    .intro-grid {
        grid-template-columns: 1fr;
    }

    .quick-links-grid {
        grid-template-columns: 1fr;
    }

    .faq-main-section {
        padding: 40px 25px;
    }

    .faq-main-section h2 {
        font-size: 1.75rem !important;
        letter-spacing: 0.5px !important;
        word-break: break-word;
    }

    .faq-question {
        font-size: 1rem;
        padding: 15px 0;
    }
}
