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

        html, body {
            font-family: Georgia, Times, 'Times New Roman', serif;
            color: #000;
            background-color: #f5f5f5;
            line-height: 1.6;
        }

        .header-wrapper {
            background-color: #000;
            padding: 20px 0;
        }

        .header-curve {
            background: linear-gradient(to bottom, #000 0%, #f5f5f5 100%);
            height: 15px;
        }

        header {
            max-width: 775px;
            margin: 0 auto;
            padding: 0 15px;
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            flex-wrap: wrap;
        }

        .logo {
            margin-bottom: 15px;
        }

        .logo a {
            color: #fff;
            text-decoration: none;
            font-size: 24px;
            font-weight: bold;
            letter-spacing: 0.05em;
        }

        nav {
            margin-bottom: 15px;
        }

        nav a {
            color: #fff;
            text-decoration: none;
            font-size: 11px;
            margin: 0 8px;
            transition: all 0.3s ease;
        }

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

        .container {
            max-width: 775px;
            margin: 0 auto;
            padding: 30px 15px;
            background-color: #fff;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
        }

        h1 {
            font-size: 28px;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 0.3em;
            line-height: 1.5em;
            margin-bottom: 30px;
            color: #000;
            border-bottom: 3px solid #E68303;
            padding-bottom: 15px;
        }

        article {
            margin-bottom: 40px;
        }

        article h2 {
            font-size: 22px;
            margin: 30px 0 15px;
            color: #000;
        }

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

        article h4 {
            font-size: 16px;
            margin: 20px 0 10px;
            color: #000;
        }

        article p {
            font-size: 13px;
            margin-bottom: 15px;
            text-align: justify;
            color: #000;
        }

        article ul, article ol {
            margin: 15px 0 15px 30px;
        }

        article li {
            font-size: 13px;
            margin-bottom: 8px;
            list-style-type: square;
        }

        article a {
            color: #E68303;
            text-decoration: none;
            transition: all 0.3s ease;
        }

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

        .transition-section {
            margin: 40px 0;
            padding: 20px;
            background-color: #f9f9f9;
            border-left: 4px solid #E68303;
        }

        .transition-section p {
            font-size: 13px;
            margin-bottom: 15px;
            color: #000;
        }

        {% if links %}
        .links-section {
            margin: 40px 0;
            padding: 30px;
            background: linear-gradient(to bottom, #f5f5f5 0%, #fff 100%);
            border: 1px dotted #ccc;
            border-radius: 5px;
        }

        .links-section h3 {
            font-size: 16px;
            font-weight: bold;
            margin-bottom: 15px;
            color: #000;
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }

        .links-section ul {
            list-style: none;
            margin: 0 0 30px 0;
            padding: 0;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px 20px;
        }

        .links-section li {
            font-size: 11px;
        }

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

        .links-section a {
            color: #E68303;
            text-decoration: none;
            transition: all 0.3s ease;
        }

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

        .footer-curve {
            background: linear-gradient(to top, #000 0%, #f5f5f5 100%);
            height: 13px;
            margin-top: 10px;
        }

        .footer-wrapper {
            background-color: #000;
            padding: 25px 0 5px;
        }

        footer {
            max-width: 775px;
            margin: 0 auto;
            padding: 0 15px;
            text-align: center;
        }

        footer nav {
            margin-bottom: 20px;
        }

        footer nav a {
            color: #fff;
            text-decoration: none;
            font-size: 11px;
            margin: 0 8px;
        }

        footer nav a:hover {
            text-decoration: underline;
        }

        .copyright {
            color: #999;
            font-size: 11px;
            padding: 15px 0;
        }

        .copyright a {
            color: #999;
            text-decoration: none;
        }

        .copyright a:hover {
            text-decoration: underline;
        }

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

            .logo {
                margin-bottom: 20px;
            }

            nav {
                margin-bottom: 20px;
            }

            nav a {
                display: inline-block;
                margin: 5px 8px;
            }

            h1 {
                font-size: 22px;
                letter-spacing: 0.2em;
            }

            .container {
                padding: 20px 15px;
            }

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

            footer nav a {
                display: inline-block;
                margin: 5px 8px;
            }
        }

        @media (max-width: 480px) {
            h1 {
                font-size: 18px;
                letter-spacing: 0.15em;
            }

            article h2 {
                font-size: 18px;
            }

            article h3 {
                font-size: 16px;
            }

            .logo a {
                font-size: 20px;
            }

            nav a {
                font-size: 10px;
                margin: 0 5px;
            }
        }
    