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

        body {
            font-family: Arial, Helvetica, sans-serif;
            font-size: 14px;
            line-height: 1.6;
            color: #4c483f;
            background-color: #f5f5f5;
        }

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

        header {
            background-color: #fff;
            border-bottom: 3px solid #f7941d;
            padding: 20px 0;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }

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

        .header-right {
            display: flex;
            gap: 15px;
            align-items: center;
            flex-wrap: wrap;
        }

        nav {
            background-color: #333;
            padding: 10px 0;
        }

        nav ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 5px;
        }

        nav ul li a {
            display: block;
            padding: 8px 15px;
            color: #fff;
            text-decoration: none;
            font-weight: bold;
            font-size: 12px;
            transition: background-color 0.3s;
        }

        nav ul li a:hover {
            background-color: #f7941d;
        }

        main {
            background-color: #fff;
            margin: 20px auto;
            padding: 30px;
            box-shadow: 0 0 10px rgba(0,0,0,0.1);
        }

        h1 {
            font-size: 28px;
            color: #333;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 2px solid #f7941d;
            font-style: italic;
        }

        article {
            margin-bottom: 30px;
        }

        article h2 {
            font-size: 22px;
            color: #333;
            margin: 25px 0 15px 0;
            font-style: italic;
        }

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

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

        article a {
            color: #f7941d;
            text-decoration: none;
            font-weight: bold;
        }

        article a:hover {
            text-decoration: underline;
        }

        .transition-section {
            margin: 30px 0;
            padding: 20px;
            background-color: #fafafa;
            border-left: 4px solid #f7941d;
        }

        {% if links %}
        .links-section {
            margin-top: 40px;
            padding: 30px;
            background-color: #fafafa;
            border: 1px solid #e0e0e0;
            border-radius: 5px;
        }

        .links-section h3 {
            font-size: 20px;
            color: #333;
            margin-bottom: 15px;
            font-style: italic;
        }

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

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

        .links-section ul li:before {
            content: "▸ ";
            color: #f7941d;
            font-weight: bold;
            margin-right: 5px;
        }

        .links-section ul li a {
            color: #4c483f;
            text-decoration: none;
            transition: color 0.3s;
        }

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

        footer {
            background-color: #333;
            color: #fff;
            padding: 30px 0 15px 0;
            margin-top: 40px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-bottom: 20px;
        }

        .footer-column h4 {
            color: #f7941d;
            font-size: 16px;
            margin-bottom: 15px;
        }

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

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

        .footer-column ul li a {
            color: #ccc;
            text-decoration: none;
            font-size: 13px;
            transition: color 0.3s;
        }

        .footer-column ul li a:hover {
            color: #f7941d;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #555;
            font-size: 12px;
            color: #999;
        }

        @media (max-width: 768px) {
            nav ul {
                flex-direction: column;
                align-items: center;
            }

            nav ul li {
                width: 100%;
                text-align: center;
            }

            .header-content {
                flex-direction: column;
                text-align: center;
            }

            main {
                padding: 20px 15px;
            }

            h1 {
                font-size: 24px;
            }

            article h2 {
                font-size: 20px;
            }

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

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