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

        body {
            font-family: Arial, sans-serif;
            background: linear-gradient(135deg, #37328c 0%, #4a44a8 100%);
            color: #ffffff;
            line-height: 1.6;
            min-height: 100vh;
        }

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

        header {
            background: rgba(255, 255, 255, 0.1);
            padding: 30px 20px;
            text-align: center;
            border-radius: 10px;
            margin-bottom: 30px;
            backdrop-filter: blur(10px);
        }

        h1 {
            font-size: 2.5rem;
            color: #ffffff;
            margin-bottom: 10px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        article {
            background: rgba(255, 255, 255, 0.95);
            color: #333;
            padding: 40px;
            border-radius: 10px;
            margin-bottom: 30px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
        }

        article h2,
        article h3,
        article h4 {
            color: #37328c;
            margin-top: 25px;
            margin-bottom: 15px;
        }

        article h2 {
            font-size: 2rem;
            border-bottom: 3px solid #37328c;
            padding-bottom: 10px;
        }

        article h3 {
            font-size: 1.5rem;
        }

        article h4 {
            font-size: 1.2rem;
        }

        article p {
            margin-bottom: 15px;
            text-align: justify;
        }

        article ul,
        article ol {
            margin-left: 30px;
            margin-bottom: 15px;
        }

        article li {
            margin-bottom: 8px;
        }

        .transition-section {
            background: rgba(255, 255, 255, 0.1);
            padding: 30px;
            border-radius: 10px;
            margin-bottom: 30px;
            backdrop-filter: blur(10px);
        }

        .transition-section p {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 15px;
        }

        {% if links %}
        .links-section {
            background: rgba(255, 255, 255, 0.95);
            color: #333;
            padding: 40px;
            border-radius: 10px;
            margin-bottom: 30px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
        }

        .links-section h2 {
            color: #37328c;
            font-size: 2rem;
            margin-bottom: 30px;
            text-align: center;
            border-bottom: 3px solid #37328c;
            padding-bottom: 15px;
        }

        .links-section h3 {
            color: #37328c;
            font-size: 1.4rem;
            margin-top: 30px;
            margin-bottom: 15px;
        }

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

        .links-section li {
            background: rgba(55, 50, 140, 0.05);
            padding: 12px 15px;
            border-radius: 5px;
            border-left: 4px solid #37328c;
            transition: all 0.3s ease;
        }

        .links-section li:hover {
            background: rgba(55, 50, 140, 0.1);
            transform: translateX(5px);
        }

        .links-section a {
            color: #37328c;
            text-decoration: none;
            font-weight: 500;
            display: block;
        }

        .links-section a:hover {
            color: #5a54c0;
        }
        {% endif %}

        footer {
            text-align: center;
            padding: 20px;
            background: rgba(0, 0, 0, 0.2);
            border-radius: 10px;
            margin-top: 30px;
        }

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

            article {
                padding: 25px;
            }

            article h2 {
                font-size: 1.5rem;
            }

            article h3 {
                font-size: 1.3rem;
            }

            .links-section {
                padding: 25px;
            }

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

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

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

            header {
                padding: 20px 15px;
            }

            h1 {
                font-size: 1.5rem;
            }

            article {
                padding: 20px;
            }

            .links-section {
                padding: 20px;
            }
        }
    