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

        body {
            font-family: Tahoma, Geneva, sans-serif;
            font-size: 16px;
            line-height: 1.6;
            color: #404040;
            background-color: #F5E432;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        header {
            background-color: #F5E432;
            padding: 20px 0;
            border-bottom: 3px solid #404040;
        }

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

        header h1 {
            font-family: Tahoma, Geneva, sans-serif;
            font-size: 2em;
            font-weight: normal;
            font-style: italic;
            color: #00f;
            margin-bottom: 10px;
        }

        nav {
            background-color: #F5E432;
            padding: 15px 0;
            border-bottom: 2px solid #404040;
        }

        nav ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        nav ul li {
            margin: 0;
        }

        nav ul li a {
            font-family: Tahoma, Geneva, sans-serif;
            font-size: 1.1em;
            color: #00f;
            text-decoration: none;
            padding: 8px 15px;
            display: block;
            transition: color 0.3s ease;
        }

        nav ul li a:hover {
            color: #404040;
        }

        nav ul li.active a {
            color: #404040;
            font-weight: bold;
        }

        main {
            flex: 1;
            padding: 40px 0;
        }

        main h1 {
            font-family: Tahoma, Geneva, sans-serif;
            font-size: 2em;
            font-weight: bold;
            color: #404040;
            margin-bottom: 30px;
            line-height: 1.3;
        }

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

        article h2 {
            font-family: Tahoma, Geneva, sans-serif;
            font-size: 1.5em;
            font-weight: bold;
            color: #404040;
            margin-top: 25px;
            margin-bottom: 15px;
        }

        article h3 {
            font-family: Arial, Helvetica, sans-serif;
            font-size: 1.2em;
            font-weight: bold;
            color: #404040;
            margin-top: 20px;
            margin-bottom: 12px;
        }

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

        article a {
            color: #00f;
            text-decoration: underline;
        }

        article a:hover {
            color: #404040;
        }

        .transition-section {
            background-color: rgba(255, 255, 255, 0.2);
            padding: 25px 30px;
            border-radius: 8px;
            margin-bottom: 30px;
        }

        .transition-section p {
            margin-bottom: 15px;
        }

        {% if links %}
        .links-section {
            background-color: rgba(255, 255, 255, 0.4);
            padding: 35px 30px;
            border-radius: 8px;
            border: 2px solid #404040;
        }

        .links-section h2 {
            font-family: Tahoma, Geneva, sans-serif;
            font-size: 1.8em;
            font-weight: bold;
            color: #404040;
            margin-bottom: 25px;
        }

        .links-section h3 {
            font-family: Tahoma, Geneva, sans-serif;
            font-size: 1.3em;
            font-weight: bold;
            color: #00f;
            margin-top: 25px;
            margin-bottom: 15px;
        }

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

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

        .links-section ul li:before {
            content: "▸";
            position: absolute;
            left: 0;
            color: #00f;
            font-weight: bold;
        }

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

        .links-section ul li a:hover {
            color: #00f;
            text-decoration: underline;
        }
        {% endif %}

        footer {
            background-color: #F5E432;
            border-top: 3px solid #404040;
            padding: 20px 0;
            margin-top: 40px;
            text-align: center;
        }

        footer p {
            color: #404040;
            font-size: 0.9em;
        }

        footer a {
            color: #404040;
            text-decoration: underline;
        }

        footer a:hover {
            color: #00f;
        }

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

            nav ul {
                flex-direction: column;
                gap: 5px;
            }

            nav ul li a {
                font-size: 1em;
                padding: 10px 15px;
            }

            main h1 {
                font-size: 1.6em;
            }

            article {
                padding: 20px;
            }

            article h2 {
                font-size: 1.3em;
            }

            article h3 {
                font-size: 1.1em;
            }

            .transition-section {
                padding: 20px;
            }

            {% if links %}
            .links-section {
                padding: 25px 20px;
            }

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

            .links-section h2 {
                font-size: 1.5em;
            }

            .links-section h3 {
                font-size: 1.2em;
            }
            {% endif %}
        }

        @media (max-width: 480px) {
            body {
                font-size: 14px;
            }

            header h1 {
                font-size: 1.3em;
            }

            main h1 {
                font-size: 1.4em;
            }

            article {
                padding: 15px;
            }
        }
    