
        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            margin: 0;
            padding: 0;
            background-color: #f8f8f8;
            color: #333;
        }
        header {
            background-color: #fff;
            padding: 2em 0;
            text-align: center;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }
        h1 {
            font-size: 2.5em;
            margin-bottom: 0.5em;
            color: #2c3e50;
        }
        main {
            padding: 2em;
            max-width: 800px;
            margin: 0 auto;
            background-color: #fff;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            border-radius: 8px;
        }
        h2 {
            font-size: 1.8em;
            margin-top: 1.5em;
            margin-bottom: 0.8em;
            color: #2c3e50;
            border-bottom: 1px solid #ddd;
            padding-bottom: 0.5em;
        }
        h3 {
            font-size: 1.4em;
            margin-top: 1.2em;
            margin-bottom: 0.5em;
            color: #3498db;
        }
        p {
            margin-bottom: 1em;
        }
        ul {
            list-style-type: disc;
            margin-left: 2em;
            margin-bottom: 1em;
        }
        li {
            margin-bottom: 0.3em;
        }
        a {
            color: #3498db;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #2980b9;
        }
        .content-table {
            width: 100%;
            border-collapse: collapse;
            margin-bottom: 1em;
        }
        .content-table th, .content-table td {
            border: 1px solid #ddd;
            padding: 0.8em;
            text-align: left;
        }
        .content-table th {
            background-color: #f2f2f2;
            font-weight: bold;
        }
        .faq {
            margin-top: 2em;
            padding-top: 2em;
            border-top: 1px solid #ddd;
        }
        .faq h2 {
            margin-top: 0;
        }
        .faq-question {
            font-weight: bold;
            margin-bottom: 0.5em;
        }
        footer {
            text-align: center;
            padding: 1em 0;
            background-color: #2c3e50;
            color: #fff;
            font-size: 0.8em;
        }
        / Innehållsförteckning /
        .toc {
            position: sticky;
            top: 20px;
            border: 1px solid #ddd;
            border-radius: 8px;
            padding: 1em;
            background-color: #fff;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }
        .toc h3 {
            margin-top: 0;
            margin-bottom: 0.5em;
        }
        .toc ul {
            list-style: none;
            padding-left: 0;
        }
        .toc li {
            margin-bottom: 0.3em;
        }
        .toc a {
            color: #333;
            text-decoration: none;
            display: block;
            padding: 0.2em 0;
            transition: background-color 0.2s ease;
        }
        .toc a:hover {
            background-color: #f0f0f0;
            border-radius: 4px;
        }
        / Responsiv design /
        @media (max-width: 768px) {
            main, .toc {
                padding: 1em;
            }
            h1 {
                font-size: 2em;
            }
            h2 {
                font-size: 1.5em;
            }
            h3 {
                font-size: 1.2em;
            }
        }
        / Laddningsanimation /
        body {
            opacity: 0;
            transition: opacity 0.5s ease-in-out;
        }
        body.loaded {
            opacity: 1;
        }
        /Hovereffekter/
        button, input[type="submit"] {
            background-color: #3498db;
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        button:hover, input[type="submit"]:hover {
            background-color: #2980b9;
        }

    