        @import url('kdg.css');
        
        html, body { 
            background: #fff; 
        }

        body { 
            padding-top: 0; 
        }

        body {
            font-family: 'Roboto', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            max-width: 1000px;
            margin: 0 auto;
            padding: 20px;
        }
        
        header {
            width: 100vw;
            margin-left: calc(-50vw + 50%);

            display: flex;
            align-items: center;
            justify-content: space-between;

            /* uitlijning met body-container */
            padding-left: max(20px, calc((100vw - 1000px) / 2));
            padding-right: max(20px, calc((100vw - 1000px) / 2));            
            padding-bottom: 20px;

            border-bottom: 1px solid #ddd;
            background: #fff;
            box-sizing: border-box;
        }                
        header a{
            line-height: 1;
            display: flex;
            align-items: center;
            text-decoration: none;
        }
        header a,
        header a:hover,
        header a:visited {
            color: #000;
            text-decoration: none;
        }
        
        header > div:first-child{
            width: auto !important;
            flex: 1;
            min-width: 0;
        }

        /* Knop rechts op dezelfde lijn */
        .language-switch-wrapper{
            display: flex;
            justify-content: flex-end;
            align-items: center;
            flex: 0 0 auto;
        }

        .d-flex{ display:flex; }
        .justify-start{ justify-content:flex-start; }
        .align-center{ align-items:center; }
        
        #dutch-content, #english-content{
            margin-top: 30px;
        }

        .logo {
			height: 100px;
			width: auto;
		}
        
        .language-switch {
            background-color: #f5f5f5;
            border: 1px solid #ddd;
            border-radius: 4px;
            padding: 8px 12px;
            cursor: pointer;
            font-size: 14px;
            transition: all 0.3s ease;
        }
        
        .language-switch:hover {
            background-color: #eaeaea;
        }
        
        h1 {
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 20px;
            color: #333;
        }
        
        .card {
            background-color: #fff;
            border: 1px solid #ddd;
            border-radius: 8px;
            padding: 25px;
            margin-bottom: 25px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        }
        
        .card h2 {
            margin-top: 0;
            font-size: 18px;
            font-weight: 600;
            color: #444;
            margin-bottom: 15px;
        }
        
        ul {
            padding-left: 20px;
        }
        
        li {
            margin-bottom: 10px;
        }
        
        .button-row {
            display: flex;
            gap: 15px;
            margin: 20px 0;
            flex-wrap: wrap;
        }
        
        .button {
            background-color: #f5f5f5;
            border: 1px solid #ddd;
            border-radius: 4px;
            padding: 10px 20px;
            cursor: pointer;
            font-size: 14px;
            transition: all 0.3s ease;
            text-decoration: none;
            color: #333;
            text-align: center;
            min-width: 120px;
        }
        
        .button.primary {
            background-color: #007bff;
            color: white;
            border-color: #0069d9;
        }
        
        .button:hover {
            background-color: #eaeaea;
        }
        
        .button.primary:hover {
            background-color: #0069d9;
        }
        
        .contact-info {
            background-color: #f9f9f9;
            padding: 20px;
            border-radius: 8px;
            margin-top: 30px;
        }
        
        .contact-info h2 {
            margin-top: 0;
            font-size: 18px;
        }
        
        .hidden {
            display: none;
        }
        
        a {
            color: #007bff;
            text-decoration: none;
        }
        
        a:hover {
            text-decoration: underline;
        }
        
        @media (max-width: 768px) {
            .header {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .language-switch {
                margin-top: 15px;
            }
        }