
        :root {
            --dark-green: #1a472a;
            --light-green: #2d5a3c;
            --white: #ffffff;
            --light-grey: #f4f4f4;
            --dark-grey: #333333;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Roboto', sans-serif;
            line-height: 1.6;
            color: var(--dark-grey);
            background-color: var(--white);
        }

        /* Navigation */
        nav {
            background-color: var(--dark-green);
            padding: 1rem 5%;
            position: sticky;
            top: 0;
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        .logo img {
            height: 100px;
            display: block;
        }

        .nav-links {
            display: flex;
            list-style: none;
        }

        .nav-links li a {
            color: var(--white);
            text-decoration: none;
            padding: 0 15px;
            font-weight: bold;
            transition: color 0.3s;
        }

        .nav-links li a:hover {
            color: #a5d6a7;
        }

        .menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
        }

        .menu-toggle span {
            display: block;
            width: 25px;
            height: 3px;
            background-color: var(--white);
            transition: all 0.3s ease;
        }

        /* Hero Section */
        header.hero {
            background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../images/background.jpg") center/cover no-repeat;
            height: 60vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            color: var(--white);
            text-align: center;
            padding: 0 20px;
        }

        header.hero h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }

        .btn {
            background-color: var(--white);
            color: var(--dark-green);
            padding: 12px 30px;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            transition: transform 0.3s;
        }

        .btn:hover {
            transform: scale(1.05);
        }

        /* Sections */
        section {
            padding: 80px 10%;
        }

        h2 {
            color: var(--dark-green);
            margin-bottom: 30px;
            text-align: center;
            font-size: 2.2rem;
        }

        /* Diensten Grid */
        .services-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
        }

        @media (min-width: 992px) {
            .services-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .service-card {
            background: var(--light-grey);
            padding: 30px;
            border-left: 5px solid var(--dark-green);
            border-radius: 5px;
        }

        /* Informatie */
        .info-content {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            align-items: center;
        }

        .info-text {
            flex: 1;
            min-width: 300px;
        }

        .info-image {
            flex: 1;
            min-width: 300px;
        }

        .info-image img {
            width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }

        /* Photo Gallery Section */
        .photo-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 40px;
        }

        .photo-gallery img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            border-radius: 8px;
            transition: transform 0.3s ease;
        }

        .photo-gallery img:hover {
            transform: scale(1.03);
        }

        /* Contact Section */
        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
        }

        .contact-info a {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 15px;
            font-size: 1.2rem;
            color: var(--dark-green);
            text-decoration: none;
            font-weight: bold;
        }

        .contact-info p.address-line {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 5px;
        }

        .wa-icon {
            height: 24px;
            width: auto;
        }

        form {
            display: flex;
            flex-direction: column;
        }

        input, textarea {
            padding: 12px;
            margin-bottom: 15px;
            border: 1px solid #ccc;
            border-radius: 4px;
            font-size: 1rem;
        }

        button {
            background-color: var(--dark-green);
            color: white;
            padding: 15px;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-size: 1.1rem;
            transition: background 0.3s;

        }

        button:hover {
            background-color: var(--light-green);
        }

        .success {
            background: #d4edda;
            color: #155724;
            padding: 15px;
            margin-bottom: 20px;
            border-radius: 4px;
        }

        /* Footer */
        footer {
            background-color: var(--dark-green);
            color: var(--white);
            text-align: center;
            padding: 60px 5%;
        }

        .footer-logo {
            height: 60px;
            margin-bottom: 20px;
        }

        .footer-details {
            font-size: 0.9rem;
            margin-top: 15px;
            line-height: 1.8;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .menu-toggle {
                display: flex;
            }

            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: var(--dark-green);
                padding: 20px 0;
                box-shadow: 0 4px 5px rgba(0,0,0,0.1);
            }

            .nav-links.active {
                display: flex;
            }

            .nav-links li {
                text-align: center;
                padding: 10px 0;
            }

            .contact-container { grid-template-columns: 1fr; }
            header.hero h1 { font-size: 2rem; }
            section { padding: 50px 5%; }
        }
