body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #F2F2F2;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #1f1e25;
    padding: 10px 30px;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: transparent; /* Zorg dat er geen wit vlak zit */
}


.brand-name {
    color: white;
    font-size: 1.2em;
    font-weight: bold;
}


.center-nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 0.9em;
    position: relative;
}

.nav-links a .arrow {
    color: #00c853;
    margin-left: 5px;
    font-size: 0.6em;
}

.nav-links a:hover {
    color: #00c853;
}

.button-container {
    margin-left: auto;
}

.cta-button {
    background-color: white;
    color: black;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s ease;
}

.cta-button:hover {
    background-color: #e0e0e0;
}


        h2 {
            color: #e9811f;
        }
        footer {
            background-color: #c4c1c1;
            text-align: center;
            padding: 20px;
            margin-top: 40px;
        }
        
        .container {
    max-width: 1600px;
    margin: 20px auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.text{
    font-size: large;
}
.images{
    display: flex;
    justify-content: space-between;
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px;
    }

    .center-nav {
        position: static;
        transform: none;
        width: 100%;
        margin-top: 10px;
    }

    .nav-links {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .button-container {
        margin: 10px 0 0 auto;
        width: 100%;
        text-align: right;
    }

    .images {
        flex-direction: column;
        align-items: center;
    }

    .images img {
        width: 100% !important;
        height: auto !important;
        max-width: 100%;
    }

    .container {
        padding: 0 10px;
    }

    .brand-name {
        font-size: 1em;
    }
}
