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

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.8;
            color: #333;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            min-height: 100vh;
        }

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

        h1 {
            font-size: 2.5rem;
            font-weight: 700;
            text-align: center;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
            letter-spacing: 1px;
        }

        main {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem 1.5rem;
        }

        article {
            background: white;
            padding: 3rem;
            margin-bottom: 3rem;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            animation: fadeIn 0.6s ease-in;
        }

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

        article h3 {
            color: #3d7c3f;
            font-size: 1.5rem;
            margin-top: 1.5rem;
            margin-bottom: 0.8rem;
        }

        article h4 {
            color: #4a8f4c;
            font-size: 1.2rem;
            margin-top: 1.2rem;
            margin-bottom: 0.6rem;
        }

        article p {
            margin-bottom: 1.2rem;
            font-size: 1.05rem;
            text-align: justify;
        }

        .transition-section {
            background: white;
            padding: 2.5rem;
            margin-bottom: 3rem;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .transition-section p {
            font-size: 1.05rem;
            margin-bottom: 1rem;
            line-height: 1.8;
        }

        {% if links %}
        .links-section {
            background: white;
            padding: 3rem;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            margin-bottom: 3rem;
        }

        .links-section h2 {
            color: #2c5f2d;
            font-size: 2rem;
            margin-bottom: 2rem;
            text-align: center;
            padding-bottom: 1rem;
            border-bottom: 3px solid #97c24d;
        }

        .links-section h3 {
            color: #3d7c3f;
            font-size: 1.4rem;
            margin-top: 2rem;
            margin-bottom: 1rem;
        }

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

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

        .links-section a {
            color: #2c5f2d;
            text-decoration: none;
            font-size: 1rem;
            transition: all 0.3s ease;
            display: inline-block;
            position: relative;
        }

        .links-section a:before {
            content: "→ ";
            margin-right: 0.5rem;
            opacity: 0;
            transform: translateX(-10px);
            transition: all 0.3s ease;
        }

        .links-section a:hover {
            color: #97c24d;
            transform: translateX(5px);
        }

        .links-section a:hover:before {
            opacity: 1;
            transform: translateX(0);
        }
        {% endif %}

        footer {
            background: linear-gradient(135deg, #2c5f2d 0%, #97c24d 100%);
            color: white;
            padding: 2rem 1.5rem;
            text-align: center;
            margin-top: 4rem;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

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

            article {
                padding: 1.5rem;
            }

            article h2 {
                font-size: 1.5rem;
            }

            article h3 {
                font-size: 1.3rem;
            }

            .transition-section {
                padding: 1.5rem;
            }

            {% if links %}
            .links-section {
                padding: 1.5rem;
            }

            .links-section ul {
                grid-template-columns: 1fr;
                gap: 0.5rem;
            }

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

            main {
                padding: 1rem;
            }
        }

        @media (max-width: 480px) {
            header {
                padding: 1.5rem 1rem;
            }

            h1 {
                font-size: 1.5rem;
            }

            article {
                padding: 1rem;
            }

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