
        :root {
            --primary-color: #333;
            --secondary-color: #666;
            --accent-color: #f0ad4e;
            --background-color: #fff;
            --text-color: #333;
            --link-color: #007bff;
            --font-family: 'Arial', sans-serif;
            --border-radius: 8px;
            --box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }

        body {
            font-family: var(--font-family);
            color: var(--text-color);
            background-color: var(--background-color);
            margin: 0;
            padding: 0;
            line-height: 1.6;
        }

        .container {
            max-width: 800px;
            margin: 20px auto;
            padding: 20px;
            background-color: var(--background-color);
            box-shadow: var(--box-shadow);
            border-radius: var(--border-radius);
        }

        h1, h2, h3 {
            color: var(--primary-color);
            margin-bottom: 15px;
        }

        h1 {
            font-size: 2.5em;
            text-align: center;
            margin-bottom: 25px;
        }

        h2 {
            font-size: 2em;
            border-bottom: 2px solid var(--accent-color);
            padding-bottom: 10px;
        }

        h3 {
            font-size: 1.5em;
        }

        p {
            margin-bottom: 15px;
        }

        a {
            color: var(--link-color);
            text-decoration: none;
            transition: var(--transition);
        }

        a:hover {
            color: var(--accent-color);
            text-decoration: underline;
        }

        ul, ol {
            margin-bottom: 15px;
            padding-left: 20px;
        }

        li {
            margin-bottom: 5px;
        }

        img {
            max-width: 100%;
            height: auto;
            border-radius: var(--border-radius);
            margin-bottom: 15px;
        }

        .table {
            width: 100%;
            border-collapse: collapse;
            margin-bottom: 15px;
        }

        .table th, .table td {
            border: 1px solid #ddd;
            padding: 8px;
            text-align: left;
        }

        .table th {
            background-color: var(--accent-color);
            color: white;
        }

        .content-table {
            margin-top: 20px;
        }

        .content-table h3 {
            margin-top: 20px;
        }

        .content-table ul {
            margin-top: 10px;
        }

        .content-table ol {
            margin-top: 10px;
        }
        
        .faq {
            margin-top: 30px;
            border-top: 1px solid #ddd;
            padding-top: 20px;
        }

        .faq h2 {
            margin-bottom: 15px;
        }

        .faq-question {
            font-weight: bold;
            margin-bottom: 5px;
        }

        .faq-answer {
            margin-bottom: 15px;
        }

        .content-table ul {
            list-style-type: disc;
        }

        .content-table ol {
            list-style-type: decimal;
        }
        
        .innehallsforteckning {
            border: 1px solid #ccc;
            padding: 10px;
            margin-bottom: 20px;
            border-radius: var(--border-radius);
            background-color: #f9f9f9;
        }
        
        .innehallsforteckning h3 {
            margin-bottom: 10px;
        }
        
        .innehallsforteckning ul {
            list-style-type: none;
            padding: 0;
        }
        
        .innehallsforteckning li {
            margin-bottom: 5px;
        }
        
        .innehallsforteckning a {
            color: var(--secondary-color);
        }
        
        @media (max-width: 600px) {
            .container {
                padding: 15px;
            }

            h1 {
                font-size: 2em;
            }

            h2 {
                font-size: 1.7em;
            }

            h3 {
                font-size: 1.3em;
            }
        }

    