
        * {
            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: #f5f5f5;
        }

        .header {
            background: linear-gradient(to bottom, #fff, #f2f2f2);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            padding: 20px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .header-wrapper {
            max-width: 1000px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
        }

        .logo {
            font-size: 24px;
            font-weight: bold;
            color: #ee5516;
        }

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

        .nav a {
            text-decoration: none;
            color: #8c8c8c;
            font-weight: 500;
            text-transform: uppercase;
            font-size: 14px;
            transition: color 0.3s;
        }

        .nav a:hover {
            color: #ee5516;
        }

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

        h1 {
            font-size: 36px;
            color: #000;
            margin: 40px 0 30px;
            text-align: center;
            font-weight: 300;
            text-transform: uppercase;
        }

        article {
            background: #fff;
            padding: 40px;
            margin-bottom: 40px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            border-radius: 5px;
        }

        article h2 {
            color: #ee5516;
            font-size: 28px;
            margin: 30px 0 15px;
            font-weight: 400;
        }

        article h3 {
            color: #333;
            font-size: 22px;
            margin: 25px 0 12px;
            font-weight: 500;
        }

        article h4 {
            color: #505050;
            font-size: 18px;
            margin: 20px 0 10px;
        }

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

        article ul, article ol {
            margin: 20px 0 20px 30px;
        }

        article li {
            margin-bottom: 10px;
            line-height: 1.7;
        }

        .transition-section {
            background: #fff;
            padding: 30px 40px;
            margin-bottom: 40px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            border-radius: 5px;
        }

        .transition-section p {
            color: #666;
            line-height: 1.8;
            margin-bottom: 15px;
        }

        {% if links %}
        .links-section {
            background: #fff;
            padding: 40px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            border-radius: 5px;
            margin-bottom: 40px;
        }

        .links-section h3 {
            color: #ee5516;
            font-size: 24px;
            margin-bottom: 20px;
            font-weight: 400;
        }

        .links-section ul {
            list-style: none;
            column-count: 2;
            column-gap: 30px;
            margin: 0;
            padding: 0;
        }

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

        .links-section a {
            color: #5997CF;
            text-decoration: none;
            font-size: 15px;
            transition: color 0.3s;
            display: inline-block;
        }

        .links-section a:hover {
            color: #ee5516;
            text-decoration: underline;
        }
        {% endif %}

        .footer {
            background: #303030;
            color: #8c8c8c;
            padding: 40px 0 20px;
            margin-top: 60px;
        }

        .footer-wrapper {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }

        .footer-column h3 {
            color: #fff;
            font-size: 18px;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column li {
            margin-bottom: 8px;
        }

        .footer-column a {
            color: #8c8c8c;
            text-decoration: none;
            font-size: 14px;
        }

        .footer-column a:hover {
            color: #fff;
        }

        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #424242;
            color: #858585;
            font-size: 14px;
        }

        @media (max-width: 768px) {
            .nav {
                display: none;
            }

            h1 {
                font-size: 28px;
            }

            article {
                padding: 20px;
            }

            article h2 {
                font-size: 24px;
            }

            article h3 {
                font-size: 20px;
            }

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

            .footer-content {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 580px) {
            .header-wrapper {
                flex-direction: column;
                gap: 15px;
            }

            .container {
                padding: 15px;
            }

            h1 {
                font-size: 24px;
                margin: 20px 0;
            }

            article {
                padding: 15px;
            }

            .transition-section {
                padding: 20px;
            }

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