        body {
            margin: 0;
            font-family: 'Muli', sans-serif;
            background-color: #f4f4f9;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            text-align: center;
        }
        .container {
            max-width: 600px;
            padding: 20px 20px 40px
        }
        .logo {
            height: auto; /* Zorgt voor juiste verhoudingen */
            display: block; /* Voorkomt ongewenste marges */
            margin-bottom: 30px !important;
            margin:auto
        }
        @media (max-width: 600px) {
            .logo {
                max-width: 300px; /* Kleinere grootte voor mobiel */
            }
        }
        h4 {
            font-family: 'Poppins', sans-serif;
            margin: 5px;
            line-height: 25px;
            font-weight: 600;
        }
        p {
            text-align: center;
            margin: 18px 0 0;
            font-family: 'Muli', sans-serif;
            font-weight: normal;
        }
        .highlight {
            color: #007bff;
            font-weight: bold;
        }
        .cta {
            margin-top: 42px;
        }
        .cta a {
            text-decoration: none;
            background: black;
            color: #0df6dd;
            padding: 8px 20px 10px;
            border-radius: 5px;
            font-size: 1em;
        }
        .cta a:hover {
            background-color: #03d7f2;
            color:black
        }