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

        body {
            font-family: 'Trebuchet MS', Arial, sans-serif;
            background-color: #ebeadb;
            color: #43433c;
            line-height: 1.6;
            font-size: 16px;
        }

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

        header {
            background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mNkYAAAAAYAAjCB0C8AAAAASUVORK5CYII=) #7c9742;
            padding: 20px 0;
            margin-bottom: 20px;
        }

        header .header-content {
            background-color: rgba(255, 255, 255, 0.95);
            padding: 20px 30px;
            border-radius: 3px;
        }

        h1 {
            color: #ca4f2e;
            font-size: 2.2em;
            font-weight: normal;
            margin-bottom: 20px;
            line-height: 1.3;
        }

        article {
            background-color: #fff;
            padding: 30px;
            margin-bottom: 20px;
            border-radius: 3px;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
        }

        article h2 {
            color: #4e4b37;
            font-size: 1.6em;
            margin: 25px 0 15px 0;
            font-weight: normal;
        }

        article h3 {
            color: #4e4b37;
            font-size: 1.3em;
            margin: 20px 0 12px 0;
            font-weight: normal;
        }

        article p {
            margin-bottom: 15px;
            text-align: justify;
            line-height: 1.7;
            font-size: 0.95em;
        }

        .transition-section {
            background-color: #fff;
            padding: 25px 30px;
            margin-bottom: 20px;
            border-radius: 3px;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
        }

        .transition-section p {
            font-size: 0.95em;
            line-height: 1.7;
            margin-bottom: 12px;
            text-align: justify;
        }

        {% if links %}
        .links-section {
            background-color: #fff;
            padding: 30px;
            border-radius: 3px;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
            margin-bottom: 20px;
        }

        .links-section h3 {
            color: #ca4f2e;
            font-size: 1.4em;
            margin-bottom: 15px;
            font-weight: normal;
            padding-bottom: 8px;
            border-bottom: 1px solid #e1e1d3;
        }

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

        .links-section ul li {
            margin-bottom: 10px;
            break-inside: avoid;
            padding-left: 20px;
            position: relative;
        }

        .links-section ul li:before {
            content: "";
            position: absolute;
            left: 0;
            top: 8px;
            width: 8px;
            height: 8px;
            background-color: #7c9742;
            border-radius: 50%;
        }

        .links-section ul li a {
            color: #d25431;
            text-decoration: none;
            font-size: 0.9em;
            transition: color 0.3s;
        }

        .links-section ul li a:hover {
            color: #23665f;
        }
        {% endif %}

        footer {
            background-color: #ebeadb;
            padding: 20px 0;
            margin-top: 30px;
            border-top: 1px solid #e6e6da;
        }

        footer .footer-content {
            text-align: center;
            color: #76766a;
            font-size: 0.85em;
        }

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

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

            article h2 {
                font-size: 1.4em;
            }

            article h3 {
                font-size: 1.2em;
            }

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

        @media (max-width: 480px) {
            header .header-content {
                padding: 15px 20px;
            }

            h1 {
                font-size: 1.5em;
            }

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