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

        header {
            background-color: #fff;
            border-bottom: 1px solid #ddd;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }

        .header-top {
            max-width: 1200px;
            margin: 0 auto;
            padding: 15px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }

        .logo {
            font-size: 24px;
            font-weight: bold;
            color: #eb4600;
            text-decoration: none;
        }

        nav {
            background-color: #2c2c2c;
        }

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

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

        .nav-menu li {
            position: relative;
        }

        .nav-menu > li > a {
            display: block;
            padding: 15px 20px;
            color: #fff;
            text-decoration: none;
            font-weight: 500;
            transition: background-color 0.3s;
        }

        .nav-menu > li > a:hover {
            background-color: #eb4600;
        }

        main {
            max-width: 1200px;
            margin: 40px auto;
            padding: 0 20px;
        }

        h1 {
            font-size: 32px;
            color: #2c2c2c;
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 3px solid #eb4600;
        }

        article {
            background-color: #fff;
            padding: 30px;
            margin-bottom: 40px;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

        article h2 {
            color: #2c2c2c;
            margin-top: 25px;
            margin-bottom: 15px;
            font-size: 24px;
        }

        article h3 {
            color: #333;
            margin-top: 20px;
            margin-bottom: 12px;
            font-size: 20px;
        }

        article h4 {
            color: #555;
            margin-top: 15px;
            margin-bottom: 10px;
            font-size: 18px;
        }

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

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

        article li {
            margin-bottom: 8px;
            color: #555;
        }

        .transition-section {
            background-color: #fff;
            padding: 30px;
            margin-bottom: 40px;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

        .transition-section p {
            color: #555;
            margin-bottom: 15px;
            text-align: justify;
        }

        {% if links %}
        .links-section {
            background-color: #fff;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            margin-bottom: 40px;
        }

        .links-section h2 {
            color: #2c2c2c;
            margin-bottom: 20px;
            font-size: 26px;
        }

        .links-section h3 {
            color: #eb4600;
            margin-top: 25px;
            margin-bottom: 15px;
            font-size: 20px;
            font-weight: 600;
        }

        .links-section ul {
            list-style: none;
            column-count: 2;
            column-gap: 30px;
            margin-bottom: 20px;
        }

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

        .links-section a {
            color: #333;
            text-decoration: none;
            transition: color 0.3s;
            display: inline-block;
            padding: 5px 0;
        }

        .links-section a:hover {
            color: #eb4600;
            text-decoration: underline;
        }
        {% endif %}

        footer {
            background-color: #2c2c2c;
            color: #fff;
            padding: 40px 20px 20px;
            margin-top: 60px;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }

        .footer-column h3 {
            color: #eb4600;
            margin-bottom: 15px;
            font-size: 18px;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column li {
            margin-bottom: 10px;
        }

        .footer-column a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-column a:hover {
            color: #eb4600;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #444;
            color: #aaa;
            font-size: 14px;
        }

        @media (max-width: 768px) {
            .header-top {
                flex-direction: column;
                text-align: center;
            }

            .nav-menu {
                flex-direction: column;
            }

            .nav-menu > li > a {
                padding: 12px 20px;
            }

            h1 {
                font-size: 26px;
            }

            article {
                padding: 20px;
            }

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

            .footer-container {
                grid-template-columns: 1fr;
            }
        }

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

            article h2 {
                font-size: 20px;
            }

            article h3 {
                font-size: 18px;
            }
        }
    