
        /* RESET - fjern al margin og padding */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        /* Body skal fylde hele skærmen og centrere indhold */
        body {
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: #f0f0f0;
            font-family: Arial, sans-serif;
            position: relative;
        }

        /* Hovedcontainer der indeholder alt indhold */
        .main-container {
            max-width: 1200px;
            width: 100%;
            margin: 20px;
            background-color: white;
            box-shadow: 0 0 30px rgba(0,0,0,0.3);
            border-radius: 8px;
            padding: 40px 80px;
        }

        /* Burger menu knap - original stil, nu i venstre side */
        .menu-btn {
            position: fixed;
            top: 30px;
            left: 90px;
            width: 50px;
            height: 90px;
            cursor: pointer;
            z-index: 1001;
            background-color: transparent;
            border-radius: 5px;
            padding: 3px;
        }

        /* Original burger menu styling */
        .menu-btn__burger {
            width: 100%;
            height: 5px;
            background-color: #333;
            position: relative;
            top: 50%;
            transform: translateY(-50%);
            transition: all 0.3s ease;
        }

        .menu-btn__burger::before,
        .menu-btn__burger::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 5px;
            background-color: #333;
            transition: all 0.3s ease;
        }

        .menu-btn__burger::before {
            transform: translateY(-10px);
        }

        .menu-btn__burger::after {
            transform: translateY(10px);
        }

        .menu-btn.open .menu-btn__burger {
            background: transparent;
        }

        .menu-btn.open .menu-btn__burger::before {
            transform: rotate(45deg);
        }

        .menu-btn.open .menu-btn__burger::after {
            transform: rotate(-45deg);
        }

        /* Menu styling - original stil */
        .menu {
            display: none;
            background-color: transparent;
            position: fixed;
            top: 70px;
            left: 20px;
            z-index: 1000;
        }

        .menu.active {
            display: block;
            background-color: rgb(230, 229, 229);
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            min-width: 200px;
        }

        .menu ul {
            list-style: none;
            padding: 10px 0;
            margin: 0;
        }

        .menu li {
            padding: 10px 20px;
        }

        .menu li:hover {
            background-color: #ddd;
        }

        .menu a {
            text-decoration: none;
            color: #333;
            font-weight: bold;
            display: block;
        }

        /* Galleri styling */
        .gallery-images {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
            margin: 20px 0;
        }

        .gallery-images a {
            display: inline-block;
            transition: transform 0.3s ease;
        }

        .gallery-images a:hover {
            transform: scale(1.05);
        }

        .gallery-images img {
            width: 300px;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

        /* Responsivt design */
        @media (max-width: 768px) {
            .main-container {
                margin: 10px;
                padding: 20px 15px;
            }
            
            .gallery-images {
                flex-direction: column;
                align-items: center;
            }
            
            .gallery-images img {
                width: 100%;
                max-width: 300px;
            }
            
            .menu.active {
                left: 10px;
                right: auto;
                min-width: 180px;
            }
            
            .menu-btn {
                left: 15px;
            }
        }

        /* Tekst styling */
        h1 {
            font-size: 2.5em;
            margin-bottom: 10px;
        }
        
        .contact-info {
            margin-top: 20px;
            line-height: 1.6;
        }
        
        .title-section {
            margin-bottom: 30px;
        }
        
        .intro-text {
            margin: 30px 0;
            font-size: 1.1em;
        }
        
        .gallery-title {
            margin: 40px 0 20px 0;
        }
 



