
        :root {
            --primary-color: #3498db;
            --secondary-color: #2ecc71;
            --text-color: #333;
            --background-color: #f4f4f4;
            --heading-font: 'Arial', sans-serif;
            --body-font: 'Helvetica', sans-serif;
            --border-radius: 8px;
            --box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            --transition-duration: 0.3s;
        }

        body {
            font-family: var(--body-font);
            color: var(--text-color);
            background-color: var(--background-color);
            margin: 0;
            padding: 0;
            line-height: 1.6;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
        }

        .container {
            width: 90%;
            max-width: 800px;
            padding: 20px;
            background-color: #fff;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            overflow: hidden;
        }

        header {
            text-align: center;
            padding-bottom: 20px;
            border-bottom: 1px solid #ccc;
        }

        h1 {
            font-family: var(--heading-font);
            color: var(--primary-color);
            font-size: 2.5em;
            margin-bottom: 10px;
        }

        h2 {
            font-family: var(--heading-font);
            color: var(--secondary-color);
            font-size: 1.8em;
            margin-top: 30px;
            margin-bottom: 15px;
            border-bottom: 2px solid var(--secondary-color);
            padding-bottom: 5px;
        }

        h3 {
            font-family: var(--heading-font);
            font-size: 1.4em;
            margin-top: 25px;
            margin-bottom: 10px;
        }

        p {
            margin-bottom: 15px;
        }

        ul, ol {
            margin-bottom: 15px;
            padding-left: 20px;
        }

        li {
            margin-bottom: 8px;
        }

        strong {
            font-weight: bold;
        }

        a {
            color: var(--primary-color);
            text-decoration: none;
            transition: color var(--transition-duration);
        }

        a:hover {
            color: #2980b9;
        }

        .content-table {
            margin-top: 20px;
            margin-bottom: 20px;
            border-collapse: collapse;
            width: 100%;
        }

        .content-table th, .content-table td {
            border: 1px solid #ddd;
            padding: 8px;
            text-align: left;
        }

        .content-table th {
            background-color: var(--primary-color);
            color: #fff;
        }

        .faq {
            margin-top: 30px;
            padding: 20px;
            background-color: #f9f9f9;
            border-radius: var(--border-radius);
        }

        .faq h3 {
            margin-top: 0;
        }

        footer {
            text-align: center;
            margin-top: 30px;
            padding: 10px;
            border-top: 1px solid #ccc;
            font-size: 0.8em;
        }

        / Innehållsförteckning /
        .toc {
            position: sticky;
            top: 20px;
            align-self: flex-start;
            padding: 15px;
            background-color: #f0f0f0;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
        }

        .toc ul {
            list-style: none;
            padding: 0;
        }

        .toc li {
            margin-bottom: 5px;
        }

        .toc a {
            display: block;
            padding: 5px 0;
            transition: background-color var(--transition-duration);
        }

        .toc a:hover {
            background-color: #ddd;
        }


        / Responsiv design /
        @media (max-width: 600px) {
            .container {
                width: 95%;
                padding: 15px;
            }

            h1 {
                font-size: 2em;
            }

            h2 {
                font-size: 1.6em;
            }

            h3 {
                font-size: 1.2em;
            }
        }
    