
        / Basic Reset /
        , ::before, ::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f9f9f9;
            margin: 0;
            padding: 0;
            overflow-x: hidden; / Prevents horizontal scrollbar /
        }

        / General Layout /
        .container {
            max-width: 960px;
            margin: 0 auto;
            padding: 20px;
            background-color: #fff;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            border-radius: 8px;
        }

        header {
            text-align: center;
            margin-bottom: 30px;
        }

        h1 {
            font-size: 2.5em;
            margin-bottom: 10px;
            color: #2c3e50;
        }

        h2 {
            font-size: 2em;
            margin-bottom: 15px;
            color: #3498db;
            border-bottom: 1px solid #eee;
            padding-bottom: 10px;
        }

        h3 {
            font-size: 1.5em;
            margin-bottom: 10px;
            color: #2ecc71;
        }

        p {
            margin-bottom: 20px;
            font-size: 1.1em;
        }

        ul, ol {
            margin-bottom: 20px;
            padding-left: 20px;
        }

        li {
            margin-bottom: 8px;
            font-size: 1.1em;
        }

        / Links /
        a {
            color: #3498db;
            text-decoration: none;
        }

        a:hover {
            text-decoration: underline;
        }

        / Innehållsförteckning /
        .innehallsforteckning {
            background-color: #f0f4f8;
            padding: 15px;
            border-radius: 5px;
            margin-bottom: 25px;
            border: 1px solid #ddd;
        }

        .innehallsforteckning h3 {
            font-size: 1.3em;
            margin-bottom: 10px;
        }

        .innehallsforteckning ul {
            list-style: none;
        }

        .innehallsforteckning a {
            display: block;
            padding: 5px 0;
            color: #555;
            transition: color 0.3s ease;
        }

        .innehallsforteckning a:hover {
            color: #3498db;
        }

        / Image Styling /
        img {
            max-width: 100%;
            height: auto;
            display: block;
            margin: 20px auto;
            border-radius: 5px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }

        / FAQ Section /
        .faq {
            margin-top: 30px;
            padding: 20px;
            background-color: #f4f4f4;
            border-radius: 8px;
        }

        .faq h2 {
            margin-bottom: 20px;
            color: #27ae60;
            border-bottom: none;
        }

        .faq-item {
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 1px solid #eee;
        }

        .faq-item h3 {
            margin-bottom: 8px;
            font-size: 1.2em;
            color: #333;
        }

        .faq-item p {
            font-size: 1em;
            margin-bottom: 0;
        }

        / Footer /
        footer {
            text-align: center;
            padding: 20px;
            background-color: #f0f0f0;
            color: #777;
            font-size: 0.9em;
            border-top: 1px solid #ddd;
            margin-top: 40px;
        }

        / Responsive Design /
        @media (max-width: 768px) {
            .container {
                padding: 15px;
            }

            h1 {
                font-size: 2em;
            }

            h2 {
                font-size: 1.7em;
            }

            h3 {
                font-size: 1.3em;
            }

            p, li {
                font-size: 1em;
            }
        }

        / Animations and Transitions /
        body {
            transition: background-color 0.3s ease;
        }

        a {
            transition: color 0.3s ease;
        }

        .container {
            opacity: 0;
            animation: fadeIn 0.5s ease forwards;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }
    