
        .l-wrapper{
            height: 100vh;
            justify-content: space-between;

        }
        
        .contact__form{
            width: 45%;
        }

        /* Container voor de hele partners grid */
        .partners__grid {
            font-family: "proxima-nova", "Helvetica", arial, sans-serif;
            color: #fff;
            margin: 0 auto;
            max-width: 950px;
            padding: 64px 32px 30px;
        }

        /* Formulierstijl */
        form {
            padding: 20px; /* Ruimte rond de inhoud */
            width: 95%;
            display: flex;
            flex-direction: column;
            gap: 10px;

        }

        /* Labels */
        form label {
            display: block; /* Zorg dat labels op nieuwe regels staan */
            margin-bottom: 8px; /* Ruimte onder labels */
            color: #fff; /* Witte kleur voor labels */
            font-weight: 600; /* Vetgedrukte labels */
        }

        /* Invoervelden en textarea */
        form input[type="text"],
        form input[type="email"],
        form textarea {

            padding: 10px; /* Ruimte binnenin de invoervelden */
            border: none;
            border-bottom: 2px solid #ff6700; /* Kleur van de rand */
            border-radius: 4px; /* Ronde hoeken */
            background-color: #0c0c0c; /* Achtergrondkleur voor invoervelden */
            color: #fff; /* Witte tekstkleur */
            font-family: "proxima-nova", "Helvetica", arial, sans-serif; /* Zelfde lettertype als de rest */
        }

        /* Invoervelden focus stijl */
        form input[type="text"]:focus,
        form input[type="email"]:focus,
        form textarea:focus {
            border-color: #ff6700; /* Kleur van de rand bij focus */
            outline: none; /* Verwijder standaard focus outline */
        }

        /* Button stijl */
        form button {
            background-color: #ff6700; /* Kleur van de knop */
            color: #fff; /* Witte tekst op de knop */
            border: none; /* Geen rand */
            border-radius: 4px; /* Ronde hoeken */
            padding: 10px 15px; /* Ruimte binnenin de knop */
            cursor: pointer; /* Handcursor bij hover */
            transition: background-color 0.3s; /* Overgangseffect */
            width: 30%;
            margin-top: 1rem;
        }

        /* Button hover effect */
        form button:hover {
            background-color: #ff5500; /* Donkerder oranje bij hover */
        }

        /* Overige stijlen zoals eerder gegeven */
        /* ... andere stijlen ... */


        input:-internal-autofill-selected {
            background-color: #0c0c0c !important;
        }


        .contact__content{
            width: 90%;
            margin-top: 20vh;
            display: flex;
            justify-content: space-between;

        }

        .contact__info{
            width: 45%;
            display: flex;
            flex-direction: column;
            gap: 5rem;
        }

        .t-size-xxl {
            font-size: 20px;
        }

        .info__title:hover{
            cursor: pointer;
        }

        @media (max-width: 800px) {
            form {
                width: 90%;
            }
    
        }


        @media (max-width: 1000px) {
            .contact__content{
                flex-direction: column;
                gap: 3rem;
                margin-top: 10vh;
            }

            .contact__info{
                width: 100%;
                display: flex;
                align-items: center;
            }

            .contact__form{
                width: 100%;
            }
    
            .t-size-xxl {
                font-size: 20px;
            }
        }


        
        @media (max-width: 550px) {
    
            .t-size-xxl {
                font-size: 10px;
            }

            .contact__info{
                gap: 1rem;
            }
        }