
        * {
            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: #f5f5f5;
        }

        .hero-section {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 80px 20px 60px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: repeating-linear-gradient(
                45deg,
                transparent,
                transparent 10px,
                rgba(255,255,255,.03) 10px,
                rgba(255,255,255,.03) 20px
            );
            pointer-events: none;
        }

        h1 {
            font-size: 3.5em;
            font-weight: 700;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 2px;
            position: relative;
            z-index: 1;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .divider {
            width: 100px;
            height: 4px;
            background: white;
            margin: 0 auto 30px;
            position: relative;
            z-index: 1;
        }

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

        article {
            background: white;
            padding: 60px 40px;
            margin: -40px auto 40px;
            border-radius: 8px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            position: relative;
            z-index: 2;
        }

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

        article h3 {
            color: #764ba2;
            font-size: 1.5em;
            margin: 30px 0 15px;
        }

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

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

        .transition-section {
            background: white;
            padding: 40px;
            margin: 40px auto;
            border-radius: 8px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        }

        .transition-section p {
            font-size: 1.05em;
            color: #555;
            margin-bottom: 15px;
            line-height: 1.8;
        }

        {% if links %}
        .links-section {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            padding: 60px 40px;
            margin: 40px auto;
            border-radius: 8px;
            position: relative;
            overflow: hidden;
        }

        .links-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: repeating-linear-gradient(
                45deg,
                transparent,
                transparent 10px,
                rgba(255,255,255,.03) 10px,
                rgba(255,255,255,.03) 20px
            );
            pointer-events: none;
        }

        .links-section h3 {
            color: white;
            font-size: 1.8em;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 2px solid rgba(255,255,255,0.3);
            position: relative;
            z-index: 1;
        }

        .links-section ul {
            list-style: none;
            column-count: 2;
            column-gap: 40px;
            position: relative;
            z-index: 1;
        }

        .links-section li {
            margin-bottom: 12px;
            break-inside: avoid;
        }

        .links-section a {
            color: white;
            text-decoration: none;
            font-size: 1.05em;
            transition: all 0.3s ease;
            display: inline-block;
            padding: 8px 0;
            border-bottom: 2px solid transparent;
        }

        .links-section a:hover {
            border-bottom: 2px solid white;
            transform: translateX(5px);
        }
        {% endif %}

        @media (max-width: 768px) {
            h1 {
                font-size: 2.2em;
                letter-spacing: 1px;
            }

            .hero-section {
                padding: 60px 20px 40px;
            }

            article {
                padding: 40px 25px;
                margin: -30px 20px 30px;
            }

            article h2 {
                font-size: 1.6em;
            }

            article h3 {
                font-size: 1.3em;
            }

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

            {% if links %}
            .links-section {
                padding: 40px 25px;
                margin: 30px 20px;
            }

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

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

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

            article {
                padding: 30px 20px;
            }

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