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

        body {
            font-family: 'Lato', Arial, sans-serif;
            font-size: 16px;
            line-height: 1.6;
            color: #1a1a1a;
            background: #fff url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><rect fill="%23f5f5f5" width="100" height="100"/></svg>') repeat;
        }

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

        header {
            background: rgba(255, 255, 255, 0.95);
            padding: 20px 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            margin-bottom: 40px;
        }

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

        .logo {
            font-size: 28px;
            font-weight: bold;
            color: #ff6e22;
            text-decoration: none;
        }

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

        nav a {
            text-decoration: none;
            color: #1a1a1a;
            font-weight: 600;
            transition: color 0.3s;
            text-transform: uppercase;
            font-size: 14px;
        }

        nav a:hover {
            color: #ff6e22;
        }

        h1 {
            font-size: 48px;
            font-weight: bold;
            color: #1a1a1a;
            text-align: center;
            margin: 60px 0 40px;
            line-height: 1.3;
        }

        article {
            background: #fff;
            padding: 40px;
            margin-bottom: 60px;
            box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.07);
        }

        article h2 {
            font-size: 32px;
            color: #1a1a1a;
            margin: 40px 0 20px;
            font-weight: bold;
        }

        article h3 {
            font-size: 24px;
            color: #1a1a1a;
            margin: 30px 0 15px;
            font-weight: bold;
        }

        article h4 {
            font-size: 20px;
            color: #1a1a1a;
            margin: 25px 0 15px;
            font-weight: bold;
        }

        article p {
            margin: 16px 0;
            font-size: 16px;
            line-height: 1.7;
        }

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

        article li {
            margin: 8px 0;
        }

        .transition-section {
            background: #fff;
            padding: 40px;
            margin-bottom: 40px;
            box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.07);
        }

        .transition-section p {
            font-size: 16px;
            line-height: 1.7;
            margin: 16px 0;
        }

        {% if links %}
        .links-section {
            background: #fff;
            padding: 50px 40px;
            margin-bottom: 60px;
            box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.07);
        }

        .links-section h3 {
            font-size: 26px;
            color: #1a1a1a;
            margin-bottom: 20px;
            font-weight: bold;
        }

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

        .links-section li {
            padding: 0;
        }

        .links-section a {
            color: #ff6e22;
            text-decoration: none;
            transition: color 0.3s;
            display: inline-block;
            padding: 4px 0;
        }

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

        footer {
            background: #000;
            color: #dbdbdb;
            padding: 60px 0 30px;
            margin-top: 80px;
        }

        footer .footer-content {
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }

        footer h3 {
            color: #fff;
            font-size: 36px;
            margin-bottom: 20px;
            font-weight: bold;
        }

        footer p {
            color: #656565;
            font-size: 18px;
            line-height: 1.5;
            margin-bottom: 20px;
        }

        footer .subfooter {
            border-top: 1px solid #333;
            margin-top: 40px;
            padding-top: 30px;
            font-size: 12px;
            color: #7b7b7b;
        }

        @media (max-width: 768px) {
            h1 {
                font-size: 32px;
                margin: 40px 0 30px;
            }

            header .container {
                flex-direction: column;
                gap: 20px;
            }

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

            article, .transition-section, .links-section {
                padding: 25px;
            }

            article h2 {
                font-size: 26px;
            }

            article h3 {
                font-size: 22px;
            }

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

            footer h3 {
                font-size: 28px;
            }

            footer p {
                font-size: 16px;
            }
        }

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

            .logo {
                font-size: 24px;
            }

            article, .transition-section, .links-section {
                padding: 20px;
            }

            article h2 {
                font-size: 22px;
            }

            footer h3 {
                font-size: 24px;
            }
        }
    