
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f5f5f5;
        }

        .bg-wrap {
            width: 100%;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        #header {
            background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
            color: white;
            padding: 20px 0;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }

        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }

        .logo-aksv {
            max-height: 60px;
            width: auto;
        }

        .slogan {
            max-height: 40px;
            width: auto;
        }

        #navigation {
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 5px;
            padding: 10px 0;
        }

        #navigation ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 5px;
        }

        #navigation li {
            display: inline-block;
        }

        #navigation a {
            color: white;
            text-decoration: none;
            padding: 10px 20px;
            display: block;
            border-radius: 3px;
            transition: background-color 0.3s ease;
            font-weight: 500;
        }

        #navigation a:hover,
        #navigation .active a {
            background-color: rgba(255, 255, 255, 0.2);
        }

        #content {
            background-color: white;
            padding: 40px 0;
            min-height: 60vh;
        }

        h1 {
            color: #0066cc;
            font-size: 2.5em;
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 3px solid #0066cc;
        }

        article {
            background-color: white;
            padding: 30px;
            margin-bottom: 40px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }

        article h2 {
            color: #0066cc;
            font-size: 1.8em;
            margin-top: 30px;
            margin-bottom: 15px;
        }

        article h3 {
            color: #004499;
            font-size: 1.4em;
            margin-top: 25px;
            margin-bottom: 12px;
        }

        article h4 {
            color: #0066cc;
            font-size: 1.2em;
            margin-top: 20px;
            margin-bottom: 10px;
        }

        article p {
            margin-bottom: 15px;
            text-align: justify;
        }

        .transition-section {
            background-color: #f8f9fa;
            padding: 30px;
            margin-bottom: 40px;
            border-radius: 8px;
            border-left: 4px solid #0066cc;
        }

        .transition-section p {
            margin-bottom: 15px;
            font-size: 1.05em;
        }

        .links-section {
            background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
            padding: 40px 30px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            border-top: 3px solid #0066cc;
        }

        .links-section h3 {
            color: #0066cc;
            font-size: 1.6em;
            margin-top: 30px;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #e0e0e0;
        }

        .links-section h3:first-child {
            margin-top: 0;
        }

        .links-section ul {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px 30px;
            margin-bottom: 30px;
        }

        .links-section li {
            padding-left: 20px;
            position: relative;
        }

        .links-section li:before {
            content: "→";
            position: absolute;
            left: 0;
            color: #0066cc;
            font-weight: bold;
        }

        .links-section a {
            color: #004499;
            text-decoration: none;
            transition: color 0.3s ease;
            display: inline-block;
        }

        .links-section a:hover {
            color: #0066cc;
            text-decoration: underline;
        }

        #footer {
            background-color: #2c3e50;
            color: white;
            padding: 40px 0 20px;
            margin-top: 50px;
        }

        .footer-middle {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }

        .footer-box h2 {
            color: #5dade2;
            font-size: 1.3em;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid #5dade2;
        }

        .footer-box ul {
            list-style: none;
        }

        .footer-box li {
            margin-bottom: 8px;
        }

        .footer-box a {
            color: #ecf0f1;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-box a:hover {
            color: #5dade2;
        }

        .footer-box p {
            color: #bdc3c7;
            font-size: 0.9em;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #34495e;
            color: #95a5a6;
            font-size: 0.9em;
        }

        @media (max-width: 768px) {
            h1 {
                font-size: 2em;
            }

            .header-top {
                justify-content: center;
                text-align: center;
            }

            #navigation ul {
                flex-direction: column;
                align-items: stretch;
            }

            #navigation a {
                text-align: center;
            }

            article {
                padding: 20px;
            }

            article h2 {
                font-size: 1.5em;
            }

            article h3 {
                font-size: 1.2em;
            }

            .links-section ul {
                grid-template-columns: 1fr;
                gap: 12px;
            }

            .transition-section {
                padding: 20px;
            }

            .links-section {
                padding: 30px 20px;
            }
        }

        @media (max-width: 480px) {
            h1 {
                font-size: 1.6em;
            }

            article {
                padding: 15px;
            }

            .container {
                padding: 0 15px;
            }
        }
    