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

        .intro-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 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;
        }

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

        .intro-card p {
            color: var(--grey);
            font-size: 0.9rem;
            line-height: 1.5;
        }

        .notice-box {
            background-color: #fdf6f0;
            border: 1px solid rgba(210, 105, 30, 0.25);
            border-left: 4px solid var(--primary);
            border-radius: 0 12px 12px 0;
            padding: 24px 28px;
            margin-bottom: 40px;
        }

        .notice-box p {
            color: #555;
            font-size: 0.97rem;
            line-height: 1.7;
            margin-bottom: 0;
        }

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

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

        .faq-section-title {
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin: 40px 0 10px;
            padding-bottom: 8px;
            border-bottom: 2px solid var(--light-grey);
        }

        .faq-section-title:first-child { margin-top: 0; }

        .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.05rem;
            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;
            flex-shrink: 0;
        }

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

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

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

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

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

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

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

        .rate-callout {
            background-color: var(--light);
            border: 1px solid var(--border);
            border-radius: 10px;
            padding: 18px 22px;
            margin: 14px 0 4px;
            display: flex;
            align-items: flex-start;
            gap: 14px;
        }

        .rate-callout-icon {
            font-size: 1.4rem;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .rate-callout p {
            color: #555;
            font-size: 0.92rem;
            margin-bottom: 0 !important;
        }

        .rate-callout strong {
            color: var(--secondary);
        }

        @media (max-width: 768px) {
            .intro-grid { grid-template-columns: 1fr; }
            .faq-main-section { padding: 40px 25px; }
            .faq-question { font-size: 1rem; padding: 16px 0; }
        }
