
        :root {
            --primary: #116dff;
            --dark: #080808;
            --light: #ffffff;
            --secondary: #162d3d;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body { font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; line-height: 1.6; color: #333; background: #fdfdfd; }
        
        header { background: var(--dark); padding: 1rem 5%; color: var(--light); display: flex; justify-content: space-between; align-items: center; }
        .logo { font-weight: bold; font-size: 1.2rem; text-decoration: none; color: var(--light); }
        nav a { color: var(--light); margin-left: 20px; text-decoration: none; font-size: 0.9rem; }

        .hero { 
            height: 80vh; 
            background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('/archive/assets/generated/bruk-av-bark-og-duk-index-hero.png'); 
            background-size: cover; 
            background-position: center; 
            display: flex; 
            flex-direction: column; 
            justify-content: center; 
            align-items: center; 
            text-align: center; 
            color: white; 
            padding: 0 20px;
        }

        .hero h1 { font-size: 3rem; margin-bottom: 1rem; }
        .btn { display: inline-block; padding: 12px 30px; background: var(--primary); color: white; text-decoration: none; border-radius: 4px; margin-top: 20px; font-weight: bold; }

        .content { padding: 4rem 5%; max-width: 1000px; margin: auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; }
        .card { border: 1px solid #eee; padding: 20px; border-radius: 8px; box-shadow: 0 4px 6px rgba(0,0,0,0.05); }
        .card img { width: 100%; height: 200px; object-fit: cover; border-radius: 4px; margin-bottom: 15px; }

        footer { background: #1a1a1a; color: #aaa; padding: 2rem 5%; text-align: center; font-size: 0.8rem; margin-top: 40px; }

        @media (max-width: 768px) {
            .hero h1 { font-size: 2rem; }
            header { flex-direction: column; gap: 15px; }
        }
    