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

        body {
            font-family: Verdana, Arial, sans-serif;
            background: linear-gradient(to bottom, #e8f5e0 0%, #DBFBC3 100%);
            color: #333;
            line-height: 1.6;
            min-height: 100vh;
        }

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

        header {
            background: linear-gradient(135deg, #2d5016 0%, #4a7c2a 100%);
            padding: 20px 0;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            margin-bottom: 30px;
        }

        h1 {
            font-family: 'Trebuchet MS', sans-serif;
            color: #fff;
            text-align: center;
            font-size: 2.5em;
            font-weight: 700;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            padding: 10px 20px;
        }

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

        article h2, article h3, article h4 {
            font-family: 'Trebuchet MS', sans-serif;
            color: #2d5016;
            margin-top: 20px;
            margin-bottom: 15px;
        }

        article h2 {
            font-size: 2em;
            border-bottom: 2px solid #108500;
            padding-bottom: 10px;
        }

        article h3 {
            font-size: 1.5em;
        }

        article h4 {
            font-size: 1.2em;
        }

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

        article a {
            color: #108500;
            font-weight: bold;
            text-decoration: none;
            border-bottom: 1px solid transparent;
            transition: all 0.3s ease;
        }

        article a:hover {
            color: #2d5016;
            border-bottom: 1px solid #2d5016;
        }

        article img {
            max-width: 100%;
            height: auto;
            border-radius: 5px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
        }

        .transition-section {
            background: #f8fcf6;
            padding: 25px;
            margin-bottom: 30px;
            border-radius: 8px;
            border: 2px solid #d4ecc8;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        }

        .transition-section p {
            font-size: 0.95em;
            margin-bottom: 10px;
        }

        {% if links %}
        .links-section {
            background: #fff;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            border-left: 5px solid #4a7c2a;
        }

        .links-section h2 {
            font-family: 'Trebuchet MS', sans-serif;
            color: #2d5016;
            font-size: 2em;
            margin-bottom: 25px;
            border-bottom: 2px solid #108500;
            padding-bottom: 10px;
        }

        .links-section h3 {
            font-family: 'Trebuchet MS', sans-serif;
            color: #2d5016;
            font-size: 1.4em;
            margin-top: 25px;
            margin-bottom: 15px;
        }

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

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

        .links-section ul li:before {
            content: "▸";
            position: absolute;
            left: 0;
            color: #108500;
            font-weight: bold;
        }

        .links-section ul li a {
            color: #000;
            text-decoration: none;
            font-weight: bold;
            font-size: 0.9em;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .links-section ul li a:hover {
            color: #108500;
            transform: translateX(5px);
        }
        {% endif %}

        footer {
            background: linear-gradient(135deg, #2d5016 0%, #4a7c2a 100%);
            color: #fff;
            text-align: center;
            padding: 20px;
            margin-top: 40px;
            border-radius: 8px 8px 0 0;
            box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
        }

        footer p {
            font-size: 0.85em;
            opacity: 0.9;
        }

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

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

            article h2 {
                font-size: 1.6em;
            }

            article h3 {
                font-size: 1.3em;
            }

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

        @media (max-width: 480px) {
            .container {
                padding: 10px;
            }

            h1 {
                font-size: 1.5em;
            }

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

            article h2 {
                font-size: 1.4em;
            }

            article p, .transition-section p {
                font-size: 0.9em;
            }
        }
    