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

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

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

        header {
            background: rgba(255, 255, 255, 0.95);
            padding: 30px;
            margin-bottom: 30px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        h1 {
            color: #764ba2;
            font-size: 2.5em;
            margin-bottom: 10px;
            text-align: center;
            font-weight: 700;
        }

        article {
            background: white;
            padding: 40px;
            margin-bottom: 30px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        article h2 {
            color: #667eea;
            font-size: 1.8em;
            margin: 30px 0 15px 0;
            padding-bottom: 10px;
            border-bottom: 3px solid #764ba2;
        }

        article h3 {
            color: #764ba2;
            font-size: 1.4em;
            margin: 25px 0 12px 0;
        }

        article h4 {
            color: #667eea;
            font-size: 1.2em;
            margin: 20px 0 10px 0;
        }

        article p {
            margin-bottom: 15px;
            text-align: justify;
            font-size: 1.05em;
            color: #444;
        }

        .transition-section {
            background: white;
            padding: 30px 40px;
            margin-bottom: 30px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .transition-section p {
            margin-bottom: 15px;
            font-size: 1.05em;
            color: #444;
        }

        {% if links %}
        .links-section {
            background: white;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            margin-bottom: 30px;
        }

        .links-section h2 {
            color: #667eea;
            font-size: 2em;
            margin-bottom: 25px;
            text-align: center;
            padding-bottom: 15px;
            border-bottom: 3px solid #764ba2;
        }

        .links-section h3 {
            color: #764ba2;
            font-size: 1.3em;
            margin: 25px 0 15px 0;
            font-weight: 600;
        }

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

        .links-section li {
            padding: 8px 0;
        }

        .links-section a {
            color: #667eea;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
            position: relative;
            font-size: 1.02em;
        }

        .links-section a:hover {
            color: #764ba2;
            padding-left: 8px;
        }

        .links-section a::before {
            content: "→";
            position: absolute;
            left: -15px;
            opacity: 0;
            transition: all 0.3s ease;
        }

        .links-section a:hover::before {
            opacity: 1;
            left: -5px;
        }
        {% endif %}

        footer {
            background: rgba(255, 255, 255, 0.95);
            padding: 20px;
            text-align: center;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            margin-top: 30px;
            color: #666;
            font-size: 0.95em;
        }

        @media (max-width: 768px) {
            .container {
                padding: 15px;
            }

            h1 {
                font-size: 2em;
            }

            header {
                padding: 20px;
            }

            article {
                padding: 25px;
            }

            article h2 {
                font-size: 1.5em;
            }

            article h3 {
                font-size: 1.2em;
            }

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

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

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

            .links-section h2 {
                font-size: 1.6em;
            }

            .links-section h3 {
                font-size: 1.15em;
            }
            {% endif %}
        }

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

            article {
                padding: 20px;
            }

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