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

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

        header {
            background: linear-gradient(135deg, #2c5f2d 0%, #97bc62 100%);
            color: white;
            padding: 1.5rem 2rem;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        h1 {
            font-size: 1.8rem;
            font-weight: 600;
            max-width: 1200px;
            margin: 0 auto;
        }

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

        article {
            background: white;
            padding: 2rem;
            margin-bottom: 2rem;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        }

        article h2 {
            color: #2c5f2d;
            font-size: 1.6rem;
            margin-top: 1.5rem;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #97bc62;
        }

        article h3 {
            color: #2c5f2d;
            font-size: 1.3rem;
            margin-top: 1.2rem;
            margin-bottom: 0.8rem;
        }

        article h4 {
            color: #444;
            font-size: 1.1rem;
            margin-top: 1rem;
            margin-bottom: 0.6rem;
        }

        article p {
            margin-bottom: 1rem;
            text-align: justify;
        }

        .transition-section {
            background: white;
            padding: 2rem;
            margin-bottom: 2rem;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        }

        .transition-section p {
            margin-bottom: 1rem;
            line-height: 1.7;
        }

        {% if links %}
        .links-section {
            background: white;
            padding: 2rem;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            margin-bottom: 2rem;
        }

        .links-section h2 {
            color: #2c5f2d;
            font-size: 1.6rem;
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #97bc62;
        }

        .links-section h3 {
            color: #2c5f2d;
            font-size: 1.2rem;
            margin-top: 1.5rem;
            margin-bottom: 0.8rem;
        }

        .links-section ul {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 0.5rem 1.5rem;
            margin-bottom: 1.5rem;
        }

        .links-section li {
            padding: 0.3rem 0;
        }

        .links-section a {
            color: #2c5f2d;
            text-decoration: none;
            transition: color 0.2s ease;
            display: inline-block;
        }

        .links-section a:hover {
            color: #97bc62;
            text-decoration: underline;
        }

        .links-section a:before {
            content: "→ ";
            color: #97bc62;
        }
        {% endif %}

        footer {
            background: #333;
            color: #ccc;
            padding: 1.5rem 2rem;
            text-align: center;
            margin-top: 3rem;
            font-size: 0.9rem;
        }

        footer a {
            color: #97bc62;
            text-decoration: none;
        }

        footer a:hover {
            text-decoration: underline;
        }

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

            .container {
                padding: 1rem;
            }

            article, .transition-section, .links-section {
                padding: 1.5rem;
            }

            article h2 {
                font-size: 1.3rem;
            }

            article h3 {
                font-size: 1.1rem;
            }

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

            header {
                padding: 1rem;
            }

            footer {
                padding: 1rem;
            }
        }

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

            article h2 {
                font-size: 1.2rem;
            }

            article h3 {
                font-size: 1rem;
            }
        }
    