        :root {
            --violet-dark: #4c1d95;
            --violet-main: #6d28d9;
            --violet-light: #8b5cf6;
            --violet-pastel: #ede9fe;
            --bg-dark: #0f172a;
            --text-main: #1e293b;
            --text-muted: #64748b;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: sans-serif;
        }

        body {
            background-color: #fafafa;
            color: var(--text-main);
            line-height: 1.6;
        }

        /* Trendy Menubalk */
        header {
            background-color: rgba(109, 40, 217, 0.95);
            backdrop-filter: blur(10px);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.2rem 2rem;
        }

        .logo {
            color: white;
            font-size: 1.5rem;
            font-weight: 700;
            text-decoration: none;
            letter-spacing: -0.5px;
        }

        .logo span {
            color: var(--violet-pastel);
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
            align-items: center;
        }

        .nav-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            font-size: 0.95rem;
        }

        .nav-links a:hover {
            color: white;
        }

        /* Trendy 'Call to Action' knop in menu */
        .nav-btn {
            background-color: white;
            color: var(--violet-main) !important;
            padding: 0.6rem 1.2rem;
            border-radius: 50px;
            font-weight: 600 !important;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }

        .nav-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.15);
        }

        /* Hero Sectie (Bovenkant website) */
        .hero {
            padding: 10rem 2rem 6rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .hero-text h1 {
            font-size: 3.5rem;
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            letter-spacing: -1px;
        }

        .hero-text h1 span {
            color: var(--violet-main);
            background: linear-gradient(45deg, var(--violet-main), var(--violet-light));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero-text p {
            color: var(--text-muted);
            font-size: 1.1rem;
            margin-bottom: 2.5rem;
        }

        .cta-buttons {
            display: flex;
            gap: 1rem;
        }

        .btn-primary {
            background-color: var(--violet-main);
            color: white;
            padding: 0.8rem 2rem;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .btn-primary:hover {
            background-color: var(--violet-dark);
            transform: translateY(-2px);
        }

        .btn-secondary {
            border: 2px solid var(--violet-pastel);
            color: var(--text-main);
            padding: 0.8rem 2rem;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .btn-secondary:hover {
            background-color: var(--violet-pastel);
        }

        /* Trendy Visueel Element (Rechts in de Hero) */
        .hero-image {
            position: relative;
            height: 400px;
            background: linear-gradient(135deg, var(--violet-light), var(--violet-dark));
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(109, 40, 217, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-image::before {
            content: '';
            position: absolute;
            width: 150%;
            height: 150%;
            background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 60%);
            animation: pulse 6s infinite alternate;
        }

        .hero-image-content {
  
        }

        /* Kenmerken Sectie (Cards) */
        .features {
            background-color: white;
            padding: 5rem 2rem;
        }

        .features-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-title h2 {
            font-size: 2.2rem;
            margin-bottom: 1rem;
        }

        .grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .card {
            padding: 2.5rem;
            border-radius: 20px;
            background-color: #fafafa;
            border: 1px solid #f1f5f9;
            transition: all 0.3s ease;
        }

        .card:hover {
            transform: translateY(-5px);
            border-color: var(--violet-light);
            box-shadow: 0 10px 30px rgba(109, 40, 217, 0.05);
        }

        .card-icon {
            width: 50px;
            height: 50px;
            background-color: var(--violet-pastel);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--violet-main);
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            font-weight: bold;
        }

        .card h3 {
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }

        .card p {
            color: var(--text-muted);
        }

        /* Animatie */
        @keyframes pulse {
            0% { transform: scale(1); }
            100% { transform: scale(1.1); }
        }

        /* Mobielvriendelijk maken (Responsive) */
        @media (max-width: 968px) {
            .hero {
                grid-template-columns: 1fr;
                padding-top: 8rem;
                text-align: center;
                gap: 2rem;
            }
            .hero-text h1 {
                font-size: 2.5rem;
            }
            .cta-buttons {
                justify-content: center;
            }
            .nav-links {
                display: none; /* In een echt project voeg je hier een hamburger-menu toe */
            }
        }
