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

        body {
            font-family: 'Droid Sans', Arial, sans-serif;
            line-height: 1.6;
            color: #272727;
            background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAC5JREFUeNpi/P//PwMhwATE/0F0AwMDA8N/BkYGRiAHRIP5YDYxCph+AAQYAIkUBwVdgVhfAAAAAElFTkSuQmCC) #f5f0e8;
            min-height: 100vh;
        }

        .container {
            max-width: 1150px;
            margin: 0 auto;
            padding: 0 15px;
        }

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

        h1 {
            font-family: 'Droid Serif', Georgia, serif;
            font-size: 36px;
            color: #191919;
            font-weight: normal;
            text-align: center;
            padding: 20px 0;
            margin: 0;
        }

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

        article h2 {
            font-family: 'Droid Serif', Georgia, serif;
            font-size: 24px;
            color: #191919;
            font-weight: normal;
            margin: 30px 0 20px 0;
            line-height: 1.3;
        }

        article h3 {
            font-family: 'Droid Serif', Georgia, serif;
            font-size: 20px;
            color: #191919;
            font-weight: normal;
            margin: 25px 0 15px 0;
            line-height: 1.3;
        }

        article h4 {
            font-family: 'Droid Serif', Georgia, serif;
            font-size: 18px;
            color: #191919;
            font-weight: normal;
            margin: 20px 0 12px 0;
        }

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

        article ul, article ol {
            margin: 15px 0 20px 30px;
            font-size: 14px;
            line-height: 1.8;
        }

        article li {
            margin-bottom: 8px;
        }

        .transition-section {
            background: #fefdfa;
            padding: 35px 40px;
            margin-bottom: 40px;
            border: 1px solid #eae1cd;
            box-shadow: 0 0 5px rgba(0, 0, 0, 0.05);
        }

        .transition-section p {
            font-size: 14px;
            line-height: 1.8;
            margin-bottom: 15px;
            color: #51331a;
        }

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

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

        .links-section h3 {
            font-family: 'Droid Serif', Georgia, serif;
            font-size: 20px;
            color: #341d0a;
            font-weight: normal;
            margin-bottom: 20px;
            padding-bottom: 12px;
            border-bottom: 2px solid #b6d163;
        }

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

        .links-section li {
            margin: 0;
            padding: 0;
        }

        .links-section a {
            color: #8ca833;
            text-decoration: none;
            font-size: 14px;
            line-height: 1.6;
            display: inline-block;
            transition: color 0.3s ease;
            border-bottom: 1px solid transparent;
        }

        .links-section a:hover {
            color: #617b12;
            border-bottom-color: #617b12;
        }
        {% endif %}

        footer {
            background: rgba(255, 255, 255, 0.9);
            padding: 30px 0;
            margin-top: 60px;
            border-top: 3px solid #b6d163;
            text-align: center;
        }

        footer p {
            font-family: 'Droid Serif', Georgia, serif;
            font-size: 12px;
            color: #8f7861;
            font-style: italic;
        }

        @media screen and (max-width: 768px) {
            h1 {
                font-size: 28px;
                padding: 15px 10px;
            }

            article {
                padding: 25px 20px;
            }

            article h2 {
                font-size: 22px;
            }

            article h3 {
                font-size: 18px;
            }

            article h4 {
                font-size: 16px;
            }

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

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

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

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

            article {
                padding: 20px 15px;
            }

            article h2 {
                font-size: 20px;
            }

            article h3 {
                font-size: 17px;
            }

            article p, article ul, article ol {
                font-size: 13px;
            }

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

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

            .links-section h3 {
                font-size: 18px;
            }

            .links-section a {
                font-size: 13px;
            }
            {% endif %}
        }
    