<!DOCTYPE html>
<html lang="nl">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Genootschap Uitgeburgerde Nederlanders</title>

    <meta name="description" content="Verbinding, ondersteuning en gemeenschap voor onvrijwillig door de Nederlandse Staat uitgeburgerde Nederlanders. Campagne voor dubbele nationaliteit.">

    <!-- Facebook Meta Tags -->
    <meta property="og:url" content="https://www.uitgeburgerd.nl/">
    <meta property="og:type" content="website">
    <meta property="og:title" content="Genootschap Uitgeburgerde Nederlanders">
    <meta property="og:description" content="Verbinding, ondersteuning en gemeenschap voor onvrijwillig door de Nederlandse Staat uitgeburgerde Nederlanders. Campagne voor dubbele nationaliteit.">
    <meta property="og:image" content="https://www.uitgeburgerd.nl/img/site_images/genootschap-OG.webp">
    <meta property="og:image:width" content="1200">
    <meta property="og:image:height" content="630">
    <meta property="og:site_name" content="Genootschap Uitgeburgerde Nederlanders">

    <!-- Twitter Meta Tags -->
    <meta name="twitter:card" content="summary_large_image">
    <meta property="twitter:domain" content="uitgeburgerd.nl">
    <meta property="twitter:url" content="https://www.uitgeburgerd.nl/">
    <meta property="twitter:title" content="Genootschap Uitgeburgerde Nederlanders">
    <meta property="twitter:description" content="Verbinding, ondersteuning en gemeenschap voor onvrijwillig door de Nederlandse Staat uitgeburgerde Nederlanders. Campagne voor dubbele nationaliteit.">
    <meta property="twitter:image" content="https://www.uitgeburgerd.nl/img/site_images/genootschap-OG.webp">

    <!-- Favicon -->
    <link rel="icon" type="image/x-icon" href="/img/favicon/favicon.ico">
    <link rel="icon" type="image/png" sizes="32x32" href="/img/favicon/favicon-32x32.png">
    <link rel="icon" type="image/png" sizes="16x16" href="/img/favicon/favicon-16x16.png">
    <link rel="apple-touch-icon" sizes="180x180" href="/img/favicon/apple-touch-icon.png">
    <link rel="manifest" href="/img/favicon/site.webmanifest">

    <!-- Google tag (gtag.js) -->
    <script async src="https://www.googletagmanager.com/gtag/js?id=G-MDSRXLLG4E"></script>
    <script>
      window.dataLayer = window.dataLayer || [];
      function gtag(){dataLayer.push(arguments);}
      gtag('js', new Date());
      gtag('config', 'G-MDSRXLLG4E');
    </script>

    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .logo-bar {
            background: white;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 0;
            overflow: hidden;
        }

        .logo-bar-img {
            height: 217px;
            width: auto;
            transform: translateX(35%);
        }

        body {
            font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
            background: #f8f9fa;
            margin: 0;
            padding: 0;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        .header {
            background-color: white;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 40px;
            border-bottom: 2px solid #ff6600;
            z-index: 40;
            width: 100%;
            box-sizing: border-box;
        }

        .header-left {
            font-weight: 600;
            color: #ff6600;
            font-size: 1.2em;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .header-icon {
            width: 1.8em;
            height: 1.8em;
            border-radius: 6px;
            flex-shrink: 0;
        }

        .header-title-short {
            display: none;
        }

        .header-title-full {
            display: inline;
        }

        .header-right {
            display: flex;
            align-items: center;
        }

        .header-nav {
            display: flex;
            gap: 1.5rem;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .header-nav a {
            color: #ff6600;
            text-decoration: none;
            font-weight: 500;
            padding: 0.5rem 1rem;
            border-radius: 8px;
            transition: all 0.3s ease;
            font-size: 1em;
        }

        .header-nav a.home-prominent,
        .header-nav a.aanmelden-prominent {
            background-color: #ff6600;
            color: white;
            font-weight: 700;
            border: 2px solid #ff6600;
            box-shadow: 0 2px 8px rgba(255, 102, 0, 0.3);
        }

        .header-nav a.home-prominent:hover,
        .header-nav a.aanmelden-prominent:hover {
            background-color: #e55a00;
            border-color: #e55a00;
            transform: scale(1.08);
            box-shadow: 0 4px 12px rgba(255, 102, 0, 0.4);
        }

        .header-nav a:hover,
        .header-nav a.active {
            background-color: #ff6600;
            color: white;
            transform: scale(1.05);
        }

        .header-link {
            color: #ff6600;
            text-decoration: none;
            font-weight: 600;
            padding: 8px 16px;
            border: 2px solid #ff6600;
            border-radius: 20px;
            transition: all 0.3s ease;
            font-size: 1em;
        }

        .header-link:hover {
            background-color: #ff6600;
            color: white;
            transform: scale(1.05);
        }

        .page-content {
            flex: 1;
            padding: 0;
        }

        /* Responsive header */
        @media (max-width: 800px) {
            .header-title-full {
                display: none;
            }

            .header-title-short {
                display: inline;
            }
        }

        @media (max-width: 900px) {
            .header {
                height: auto;
                min-height: 60px;
                padding: 12px 20px;
                flex-direction: column;
                gap: 15px;
            }

            .header-left {
                font-size: 1em;
                gap: 10px;
                text-align: center;
            }

            .header-icon {
                width: 1.6em;
                height: 1.6em;
            }

            .header-nav {
                gap: 1rem;
                flex-wrap: wrap;
                justify-content: center;
            }

            .header-nav a {
                padding: 6px 12px;
                font-size: 0.9em;
            }
        }

        @media (max-width: 768px) {
            .header-left {
                font-size: 0.95em;
                gap: 8px;
            }

            .header-nav {
                gap: 0.8rem;
            }
        }

        @media (max-width: 480px) {
            .header {
                padding: 8px;
                gap: 8px;
            }

            .header-left {
                font-size: 0.85em;
                line-height: 1.1;
                gap: 8px;
                text-align: center;
            }

            .header-icon {
                width: 1.5em;
                height: 1.5em;
            }

            .header-nav {
                gap: 0.5rem;
            }

            .header-nav a {
                padding: 5px 10px;
                font-size: 0.8em;
            }
        }
    </style>
</head>
<body>
    <div class="header">
        <div class="header-left">
            <img src="/img/site_images/broken-nl-flag_100x100.png" alt="Broken Dutch Flag" class="header-icon">
            <span class="header-title-full">Genootschap Uitgeburgerde Nederlanders</span>
            <span class="header-title-short">Genootschap Uitgeburgerde NL</span>
        </div>
        <div class="header-right">
            <nav class="header-nav">
                    <a href="/aanmelden" class="aanmelden-prominent">Aanmelden</a>
            </nav>
        </div>
    </div>

    <div class="page-content">
        <style>
    body {
        font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
        margin: 0;
        padding: 0;
        line-height: 1.6;
        color: #1f2937;
        background: white;
        min-height: 100vh;
    }

    .content-section {
        background: rgba(255, 255, 255, 0.8);
        backdrop-filter: blur(10px);
        padding: 5rem 2rem;
        margin: 2rem 0;
        border-radius: 24px;
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
        margin-top: 3rem;
        margin-bottom: 3rem;
    }

    .content-container {
        max-width: 1000px;
        margin: 0 auto;
    }

    .section-title {
        font-size: 3rem;
        font-weight: 800;
        text-align: center;
        margin-bottom: 1rem;
        color: #1f2937;
        letter-spacing: -0.02em;
    }

    .section-subtitle {
        font-size: 1.3rem;
        text-align: center;
        color: #6b7280;
        margin-bottom: 2rem;
        font-weight: 400;
    }

    .cta-button {
        background: linear-gradient(135deg, #ff6600 0%, #ff8800 100%);
        color: white;
        padding: 1.2rem 2.5rem;
        border: none;
        border-radius: 12px;
        font-size: 1.1rem;
        font-weight: 600;
        text-decoration: none;
        display: inline-block;
        transition: all 0.3s ease;
        box-shadow: 0 4px 20px rgba(255, 102, 0, 0.3);
        border: 2px solid transparent;
    }

    .cta-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 30px rgba(255, 102, 0, 0.4);
        background: linear-gradient(135deg, #e55a00 0%, #ff6600 100%);
    }

    @media (max-width: 768px) {
        .section-title {
            font-size: 2.2rem;
        }

        .content-section {
            margin: 2rem 1rem;
            padding: 3rem 1.5rem;
        }
    }

    @media (max-width: 480px) {
        .section-title {
            font-size: 1.8rem;
        }
    }
</style>

<div class="content-section" style="background: #f8fafc;">
    <div class="content-container">
        <div style="text-align: center; margin-bottom: 2rem;">
            <img src="/img/site_images/genootschap-OG.webp" alt="Genootschap Uitgeburgerde Nederlanders" style="max-width: 350px; width: 100%; height: auto; border-radius: 18px; box-shadow: 0 4px 24px rgba(31,41,55,0.08);" />
        </div>
        <p class="section-subtitle">&#x1F620; <a href="https://wetten.overheid.nl/jci1.3:c:BWBR0003738&hoofdstuk=5&artikel=15&z=2023-10-01&g=2023-10-01" target="_blank" rel="noopener noreferrer" style="color: #ff6600; text-decoration: underline;">Ongewild gedenaturaliseerd door de Nederlandse wet</a></p>
        <div style="max-width: 600px; margin: 2rem auto 1.5rem auto; color: #374151; font-size: 1.15rem; line-height: 1.7; text-align: center;">

            <p style="margin-bottom: 1.2em;">Alleen Nederland maakt van dubbele nationaliteit een reden voor automatische uitburgering.</p>

            <p style="margin-bottom: 1.2em; color: #dc2626; font-weight: 700;">&#x1F7E5; Geforceerde denaturalisatie is beleid.<br>&#x1F7E5; Duizenden zijn zo ongewild hun nationaliteit verloren.</p>
            <p style="margin-bottom: 1.2em;">&#x1F449; Sluit je aan. Deel je verhaal. Eis verandering.</p>
        </div>
        <div style="text-align: center; margin-top: 2rem;">
            <a href="/aanmelden" class="cta-button">Aanmelden</a>
        </div>
    </div>
</div>
    </div>

    <div class="logo-bar">
        <img src="/img/site_images/MinisterieLogo.svg" alt="Ministerie Logo" class="logo-bar-img">
    </div>

    <!-- 100% privacy-first analytics -->
    <script data-collect-dnt="true" async src="https://scripts.simpleanalyticscdn.com/latest.js"></script>
    <noscript><img src="https://queue.simpleanalyticscdn.com/noscript.gif?collect-dnt=true" alt="" referrerpolicy="no-referrer-when-downgrade"/></noscript>
</body>
</html>