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

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

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

        header {
            background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
            color: white;
            padding: 2rem 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        h1 {
            font-size: 2.5rem;
            font-weight: 300;
            text-align: center;
            margin-bottom: 1rem;
        }

        nav {
            background-color: #fff;
            padding: 1rem 0;
            border-bottom: 3px solid #e67e22;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        .nav-menu {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            list-style: none;
            gap: 2rem;
        }

        .nav-menu li {
            position: relative;
        }

        .nav-menu a {
            color: #2c3e50;
            text-decoration: none;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            transition: all 0.3s ease;
            text-transform: uppercase;
            font-size: 0.9rem;
            letter-spacing: 0.5px;
        }

        .nav-menu a:hover {
            background-color: #e67e22;
            color: white;
            transform: translateY(-2px);
        }

        .nav-menu a::before {
            content: "•";
            color: #e67e22;
            margin-right: 0.5rem;
            font-weight: bold;
        }

        main {
            background-color: white;
            margin: 2rem auto;
            padding: 3rem;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }

        article {
            margin-bottom: 3rem;
        }

        article p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            line-height: 1.8;
            text-align: justify;
        }

        article h2, article h3, article h4 {
            color: #2c3e50;
            margin: 2rem 0 1rem 0;
        }

        article h2 {
            font-size: 1.8rem;
            border-bottom: 2px solid #e67e22;
            padding-bottom: 0.5rem;
        }

        article h3 {
            font-size: 1.4rem;
        }

        .transition-section {
            background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
            color: white;
            padding: 2rem;
            border-radius: 10px;
            margin: 2rem 0;
            box-shadow: 0 3px 15px rgba(0,0,0,0.1);
        }

        .transition-section p {
            font-size: 1.1rem;
            margin-bottom: 1rem;
            text-align: center;
        }

        {% if links %}
        .links-section {
            background: linear-gradient(135deg, #ecf0f1 0%, #bdc3c7 100%);
            padding: 3rem 2rem;
            border-radius: 10px;
            margin-top: 2rem;
            box-shadow: inset 0 2px 10px rgba(0,0,0,0.1);
        }

        .links-section h3 {
            color: #2c3e50;
            font-size: 1.6rem;
            margin-bottom: 1.5rem;
            text-align: center;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #e67e22;
        }

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

        .links-section li {
            background-color: white;
            border-left: 4px solid #e67e22;
            padding: 1rem;
            border-radius: 5px;
            transition: all 0.3s ease;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .links-section li:hover {
            transform: translateX(5px);
            box-shadow: 0 4px 20px rgba(0,0,0,0.15);
            border-left-color: #d35400;
        }

        .links-section a {
            color: #2c3e50;
            text-decoration: none;
            font-weight: 500;
            display: block;
            transition: color 0.3s ease;
        }

        .links-section a:hover {
            color: #e67e22;
        }

        .links-section a::before {
            content: "→";
            color: #e67e22;
            margin-right: 0.5rem;
            font-weight: bold;
        }
        {% endif %}

        footer {
            background-color: #2c3e50;
            color: white;
            padding: 2rem 0;
            text-align: center;
            margin-top: 3rem;
        }

        .footer-menu {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 2rem;
            margin-bottom: 1rem;
        }

        .footer-menu a {
            color: #ecf0f1;
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s ease;
            padding: 0.5rem;
        }

        .footer-menu a:hover {
            color: #e67e22;
        }

        .footer-menu a::after {
            content: "|";
            color: #7f8c8d;
            margin-left: 2rem;
        }

        .footer-menu a:last-child::after {
            display: none;
        }

        .credits {
            font-size: 0.8rem;
            color: #95a5a6;
            margin-top: 1rem;
        }

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

            .nav-menu {
                flex-direction: column;
                align-items: center;
                gap: 1rem;
            }

            main {
                margin: 1rem;
                padding: 2rem 1.5rem;
            }

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

            .footer-menu {
                flex-direction: column;
                gap: 1rem;
            }

            .footer-menu a::after {
                display: none;
            }
        }

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

            main {
                padding: 1.5rem 1rem;
            }

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