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

        body {
            font-family: Arial, Helvetica, sans-serif;
            font-size: 16px;
            line-height: 1.6;
            color: #666;
            background-color: #f5f5f5;
        }

        .wrapper {
            width: 100%;
            background-color: #fff;
        }

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

        header {
            background: linear-gradient(135deg, #751973 0%, #96C543 100%);
            padding: 60px 0 40px;
            margin-bottom: 40px;
        }

        h1 {
            font-family: "Ubuntu", sans-serif;
            font-size: 2.5rem;
            line-height: 1.3;
            font-weight: 500;
            color: #fff;
            margin-bottom: 20px;
            text-align: center;
        }

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

        article h2 {
            font-family: "Ubuntu", sans-serif;
            font-size: 1.75rem;
            line-height: 1.4;
            font-weight: 400;
            color: #96C543;
            margin: 30px 0 15px 0;
        }

        article h2:first-child {
            margin-top: 0;
        }

        article h3 {
            font-family: "Ubuntu", sans-serif;
            font-size: 1.4rem;
            line-height: 1.4;
            font-weight: 400;
            color: #751973;
            margin: 25px 0 12px 0;
        }

        article h4 {
            font-family: "Ubuntu", sans-serif;
            font-size: 1.2rem;
            line-height: 1.4;
            font-weight: 400;
            color: #666;
            margin: 20px 0 10px 0;
        }

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

        article ul, article ol {
            margin: 0 0 20px 0;
            padding-left: 0;
        }

        article li {
            padding: 5px 0 5px 25px;
            list-style-type: none;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="8" height="8"><circle cx="4" cy="4" r="3" fill="%2396C543"/></svg>') no-repeat 8px 12px;
        }

        article a {
            color: #96C543;
            text-decoration: underline;
        }

        article a:hover {
            color: #5e8b0e;
            text-decoration: none;
        }

        article img {
            max-width: 100%;
            height: auto;
            border-radius: 4px;
            margin: 15px 0;
        }

        .transition-section {
            background-color: #f9f9f9;
            padding: 30px;
            margin-bottom: 40px;
            border-left: 4px solid #96C543;
            border-radius: 4px;
        }

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

        .transition-section p:last-child {
            margin-bottom: 0;
        }

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

        .links-section h2 {
            font-family: "Ubuntu", sans-serif;
            font-size: 2rem;
            line-height: 1.4;
            font-weight: 400;
            color: #751973;
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 2px dotted #ddd;
        }

        .links-section h3 {
            font-family: "Ubuntu", sans-serif;
            font-size: 1.5rem;
            line-height: 1.4;
            font-weight: 400;
            color: #96C543;
            margin: 25px 0 15px 0;
        }

        .links-section ul {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px 30px;
            margin-bottom: 30px;
            padding: 0;
        }

        .links-section li {
            list-style-type: none;
            padding: 8px 0 8px 20px;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="8" height="8"><circle cx="4" cy="4" r="3" fill="%2396C543"/></svg>') no-repeat 2px 14px;
            line-height: 1.6;
        }

        .links-section a {
            color: #666;
            text-decoration: none;
            transition: color 0.3s ease;
        }

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

        footer {
            background-color: #f5f5f5;
            padding: 30px 0;
            margin-top: 60px;
            border-top: 2px dotted #ddd;
        }

        footer .container {
            text-align: center;
            font-family: "Ubuntu", sans-serif;
            font-size: 0.9rem;
            color: #96C543;
        }

        @media (max-width: 768px) {
            h1 {
                font-size: 2rem;
            }

            article {
                padding: 20px;
            }

            article h2 {
                font-size: 1.5rem;
            }

            article h3 {
                font-size: 1.25rem;
            }

            .transition-section {
                padding: 20px;
            }

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

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

            .links-section h2 {
                font-size: 1.6rem;
            }

            .links-section h3 {
                font-size: 1.3rem;
            }
            {% endif %}
        }

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

            article {
                padding: 15px;
            }

            article h2 {
                font-size: 1.3rem;
            }

            article h3 {
                font-size: 1.1rem;
            }

            article p, .transition-section p {
                font-size: 0.95rem;
            }
        }
    