/* CSS Variabelen */
        :root {
            --primary-color: #D50000;
            --secondary-color: #FFEB3B;
            --dark-color: #212121;
            --light-color: #F5F5F5;
            --accent-color: #FFC107;
            --text-color: #333;
            --header-height: 80px;
        }

        /* Basis Stijlen */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            background-color: var(--light-color);
            overflow-x: hidden;
        }

        /* Header Stijlen */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: var(--dark-color);
            color: var(--light-color);
            z-index: 1000;
            height: var(--header-height);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            height: 100%;
        }

        .logo {
            font-size: 24px;
            font-weight: bold;
            letter-spacing: 1px;
            color: var(--primary-color);
            text-decoration: none;
            text-transform: uppercase;
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 25px;
        }

        nav ul li a {
            color: var(--light-color);
            text-decoration: none;
            font-size: 16px;
            transition: color 0.3s;
        }

        nav ul li a:hover {
            color: var(--primary-color);
        }

        .burger {
            display: none;
            cursor: pointer;
        }

        .burger div {
            width: 25px;
            height: 3px;
            background-color: var(--light-color);
            margin: 5px 0;
            transition: all 0.3s ease;
        }

        /* Main Content */
        main {
            padding-top: var(--header-height);
            min-height: 100vh;
        }

        .privacy-container {
            max-width: 1000px;
            margin: 50px auto;
            padding: 0 20px;
        }

        .privacy-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .privacy-header h1 {
            font-size: 2.5rem;
            color: var(--dark-color);
            margin-bottom: 20px;
            text-transform: uppercase;
        }

        .privacy-header p {
            font-size: 1.2rem;
            color: #666;
        }

        .privacy-content {
            background-color: #fff;
            border-radius: 0;
            padding: 40px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            border: 2px solid var(--dark-color);
        }

        .privacy-section {
            margin-bottom: 30px;
        }

        .privacy-section h2 {
            font-size: 1.8rem;
            color: var(--dark-color);
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--primary-color);
            text-transform: uppercase;
        }

        .privacy-section h3 {
            font-size: 1.4rem;
            color: var(--dark-color);
            margin: 20px 0 10px;
        }

        .privacy-section p {
            margin-bottom: 15px;
        }

        .privacy-section ul {
            margin-left: 20px;
            margin-bottom: 15px;
        }

        .privacy-section li {
            margin-bottom: 8px;
        }

        /* Footer */
        footer {
            background-color: #1a1a1a;
            color: var(--light-color);
            padding: 50px 0 20px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }

        .footer-column h3 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: var(--primary-color);
            text-transform: uppercase;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column ul li {
            margin-bottom: 10px;
        }

        .footer-column ul li a {
            color: var(--light-color);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-column ul li a:hover {
            color: var(--primary-color);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
        }

        /* Responsive */
        @media (max-width: 768px) {
            nav ul {
                position: fixed;
                top: var(--header-height);
                left: 0;
                width: 100%;
                height: calc(100vh - var(--header-height));
                background-color: var(--dark-color);
                flex-direction: column;
                align-items: center;
                justify-content: flex-start;
                padding-top: 50px;
                transform: translateX(-100%);
                transition: transform 0.3s ease;
            }

            nav ul.active {
                transform: translateX(0);
            }

            nav ul li {
                margin: 15px 0;
            }

            .burger {
                display: block;
            }

            .privacy-content {
                padding: 20px;
            }
        }

