        body {
            margin: 0;
            padding: 0;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        .topbar {
            background-color: #333;
            color: #fff;
            text-align: center;
            padding: 10px 0;
        }

        .topbar a {
            color: #fff;
            text-decoration: none;
            margin: 0 10px;
        }

        .menubar {
            background-color: #eee;
            padding: 10px 10%;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .menubar img {
            max-height: 50px;
        }

        .menu-items {
            list-style-type: none;
            display: flex;
            height: 100%;
        }

        .menu-items li {
            margin-right: 20px;
            height: 100%;
        }

        .menu-items a {
            text-decoration: none;
            color: #333;
            font-weight: bold;
            font-size: 16px;
            display: flex;
            align-items: center;
            padding: 0 10px;
            border-bottom: 3px solid transparent;
            transition: all 0.3s ease;
            height: 100%;
        }

        .menu-items a:hover {
            color: #00bcd4;
            border-bottom: 3px solid #00bcd4;
        }

        .services {
            background-image: url('achtergrondfoto.jpg');
            background-size: cover;
            background-position: center;
            color: #fff;
            text-align: center;
            padding: 5px 0;
            margin: 0px 10%;
            position: relative;
        }

        .transparent-div {
            background-color: rgba(0, 0, 0, 0.5);
            padding: 20px;
            border-radius: 10px;
			
			min-height:800px;
        }

        /* Voeg de media query toe voor mobiele weergave */
        @media screen and (max-width: 600px) {
            .menu-items {
                flex-direction: column;
            }

            .menu-items li {
                margin-right: 0;
                margin-bottom: 10px; /* Afstand tussen menu-items toegevoegd */
            }

            .menu-items a {
                height: auto;
            }
        }
		.photo-frame {
            position: relative;
            width: 150px;
            height: 150px;
            margin: 5px;
            perspective: 1000px;
        }

        .photo-frame:hover .photo {
            transform: scale(1.1);
        }

        .photo {
            width: 100%;
            height: 100%;
            border: 5px solid #fff;
            border-radius: 10px;
            transform-style: preserve-3d;
            transition: transform 0.3s;
            cursor: pointer;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .popup {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            justify-content: center;
            align-items: center;
        }

        .popup-content {
            text-align: center;
        }

        .popup img {
            max-width: 80%;
            max-height: 80%;
            border-radius: 10px;
        }

        .popup-close {
            position: absolute;
            top: 15px;
            right: 15px;
            color: #fff;
            font-size: 20px;
            cursor: pointer;
        }