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

        body {
            font-family: Arial, Helvetica, sans-serif;
            font-size: 16px;
            line-height: 1.6;
            color: #333;
            background-color: #fff;
        }

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

        header {
            background-color: #222;
            padding: 10px 0 0;
        }

        nav {
            background-color: #ddd;
            padding: 0;
        }

        nav ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            margin: 0;
            padding: 0;
        }

        nav ul li {
            border-left: 1px solid #999;
        }

        nav ul li:first-child {
            border-left: none;
        }

        nav ul li a {
            display: block;
            padding: 8px 15px;
            color: #444;
            text-decoration: none;
            font-size: 15px;
            transition: all 0.3s ease;
        }

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

        main {
            min-height: 400px;
            padding: 40px 0;
        }

        h1 {
            font-size: 28px;
            color: #EE701C;
            margin-bottom: 20px;
            font-weight: normal;
            text-transform: uppercase;
        }

        article h2 {
            font-size: 22px;
            color: #444;
            margin-top: 25px;
            margin-bottom: 15px;
            font-weight: bold;
        }

        article h3 {
            font-size: 18px;
            color: #444;
            margin-top: 20px;
            margin-bottom: 12px;
            font-weight: bold;
        }

        article p {
            margin-bottom: 15px;
            line-height: 1.6;
        }

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

        .transition-section p {
            margin-bottom: 15px;
        }

        {% if links %}
        .links-section {
            background-color: #f9f9f9;
            padding: 30px 0;
            margin-top: 40px;
            border-top: 3px solid #EE701C;
        }

        .links-section h3 {
            font-size: 18px;
            color: #EE701C;
            margin-bottom: 15px;
            font-weight: bold;
        }

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

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

        .links-section ul li a {
            color: #EE701C;
            text-decoration: none;
            transition: color 0.3s ease;
            display: inline-block;
        }

        .links-section ul li a:before {
            content: "→ ";
        }

        .links-section ul li a:hover {
            color: #000;
        }
        {% endif %}

        footer {
            background-color: #D8D5D3;
            padding: 30px 0;
            margin-top: 50px;
            font-size: 14px;
        }

        footer p {
            margin-bottom: 10px;
        }

        @media only screen and (max-width: 768px) {
            nav ul {
                flex-direction: column;
            }

            nav ul li {
                border-left: none;
                border-bottom: 1px solid #999;
            }

            h1 {
                font-size: 22px;
            }

            article h2 {
                font-size: 20px;
            }

            article h3 {
                font-size: 16px;
            }

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

        @media only screen and (max-width: 480px) {
            body {
                font-size: 14px;
            }

            h1 {
                font-size: 20px;
            }

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