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

        body {
            font-family: "Times New Roman", Times, serif;
            color: #000;
            background: #fff;
            line-height: 1.6;
        }

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

        header {
            background: #fff;
            border-bottom: 1px solid #000;
            padding: 20px 0;
        }

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

        .logo {
            font-size: 24px;
            font-weight: 600;
            color: #000;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        nav {
            background: #fff;
            border-bottom: 1px solid #000;
            margin-bottom: 40px;
        }

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

        nav ul li {
            border-right: 1px solid #000;
            border-top: 1px solid #000;
            border-bottom: 1px solid #000;
        }

        nav ul li:first-child {
            border-left: 1px solid #000;
        }

        nav ul li a {
            display: block;
            padding: 10px 20px;
            color: #000;
            text-decoration: none;
            text-transform: uppercase;
            font-weight: 600;
            font-size: 14px;
            transition: background 0.3s;
        }

        nav ul li a:hover {
            background: #e6e6e6;
        }

        main {
            padding: 40px 0;
        }

        h1 {
            font-size: 32px;
            color: #000;
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 1px solid #000;
            font-weight: normal;
            text-transform: capitalize;
        }

        article {
            margin-bottom: 40px;
        }

        article h2 {
            font-size: 24px;
            color: #000;
            margin: 30px 0 15px;
            font-weight: normal;
            text-transform: capitalize;
        }

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

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

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

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

        .transition-section p {
            color: #000;
            text-align: justify;
        }

        {% if links %}
        .links-section {
            background: #f2f2f2;
            padding: 40px 30px;
            margin: 40px 0;
            border: 1px solid #000;
        }

        .links-section h3 {
            font-size: 20px;
            color: #000;
            margin-bottom: 15px;
            font-weight: normal;
            text-transform: capitalize;
        }

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

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

        .links-section ul li:before {
            content: "→ ";
            color: #000;
            margin-right: 5px;
        }

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

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

        footer {
            background: #fff;
            border-top: 1px solid #000;
            padding: 30px 0;
            margin-top: 60px;
        }

        .footer-content {
            text-align: center;
            color: #000;
        }

        .footer-content p {
            margin: 5px 0;
            font-size: 14px;
        }

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

            article h2 {
                font-size: 20px;
            }

            article h3 {
                font-size: 18px;
            }

            nav ul {
                flex-direction: column;
            }

            nav ul li {
                border: 1px solid #000;
                border-bottom: 0;
            }

            nav ul li:last-child {
                border-bottom: 1px solid #000;
            }

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

            .header-container {
                text-align: center;
                justify-content: center;
            }
        }

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

            article h2 {
                font-size: 18px;
            }

            nav ul li a {
                padding: 8px 15px;
                font-size: 13px;
            }
        }
    