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

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f5f5f0;
        }

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

        header {
            background: linear-gradient(135deg, #6b8e23 0%, #556b2f 100%);
            color: white;
            padding: 20px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 24px;
            font-weight: bold;
            color: white;
            text-decoration: none;
        }

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

        nav a {
            color: white;
            text-decoration: none;
            font-size: 16px;
            transition: opacity 0.3s;
        }

        nav a:hover {
            opacity: 0.8;
        }

        main {
            background-color: white;
            margin: 40px auto;
            max-width: 1200px;
            padding: 60px 40px;
            box-shadow: 0 0 30px rgba(0,0,0,0.1);
            border-radius: 8px;
        }

        h1 {
            font-size: 42px;
            color: #556b2f;
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 3px solid #6b8e23;
        }

        article {
            margin-bottom: 50px;
        }

        article h2 {
            font-size: 32px;
            color: #556b2f;
            margin-top: 40px;
            margin-bottom: 20px;
        }

        article h3 {
            font-size: 24px;
            color: #6b8e23;
            margin-top: 30px;
            margin-bottom: 15px;
        }

        article h4 {
            font-size: 20px;
            color: #556b2f;
            margin-top: 25px;
            margin-bottom: 12px;
        }

        article p {
            font-size: 17px;
            line-height: 1.8;
            margin-bottom: 20px;
            color: #444;
        }

        .transition-section {
            background-color: #fafaf5;
            padding: 40px;
            border-radius: 8px;
            margin: 50px 0;
            border-left: 4px solid #6b8e23;
        }

        .transition-section p {
            font-size: 17px;
            line-height: 1.8;
            color: #555;
        }

        {% if links %}
        .links-section {
            background: linear-gradient(to bottom, #f9f9f4 0%, #ffffff 100%);
            padding: 50px 40px;
            border-radius: 8px;
            margin-top: 50px;
            border: 1px solid #e0e0d8;
        }

        .links-section h3 {
            font-size: 28px;
            color: #556b2f;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 2px solid #6b8e23;
        }

        .links-section ul {
            list-style: none;
            column-count: 2;
            column-gap: 40px;
            margin-bottom: 40px;
        }

        .links-section li {
            margin-bottom: 15px;
            break-inside: avoid;
        }

        .links-section a {
            color: #556b2f;
            text-decoration: none;
            font-size: 16px;
            display: inline-block;
            position: relative;
            padding-left: 20px;
            transition: color 0.3s, padding-left 0.3s;
        }

        .links-section a:before {
            content: "→";
            position: absolute;
            left: 0;
            color: #6b8e23;
            transition: left 0.3s;
        }

        .links-section a:hover {
            color: #6b8e23;
            padding-left: 25px;
        }

        .links-section a:hover:before {
            left: 5px;
        }
        {% endif %}

        footer {
            background-color: #3d4f1f;
            color: white;
            padding: 30px 0;
            margin-top: 60px;
            text-align: center;
        }

        footer p {
            font-size: 14px;
            opacity: 0.9;
        }

        @media (max-width: 768px) {
            header .container {
                flex-direction: column;
                gap: 20px;
            }

            nav ul {
                flex-direction: column;
                gap: 15px;
                text-align: center;
            }

            main {
                margin: 20px;
                padding: 30px 20px;
            }

            h1 {
                font-size: 32px;
            }

            article h2 {
                font-size: 26px;
            }

            article h3 {
                font-size: 22px;
            }

            article p {
                font-size: 16px;
            }

            .transition-section {
                padding: 25px 20px;
            }

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

            .links-section ul {
                column-count: 1;
            }

            .links-section h3 {
                font-size: 24px;
            }
            {% endif %}
        }

        @media (max-width: 480px) {
            h1 {
                font-size: 28px;
            }

            article h2 {
                font-size: 24px;
            }

            article h3 {
                font-size: 20px;
            }

            .logo {
                font-size: 20px;
            }
        }
    