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

        body {
            font-family: 'Trebuchet MS', Arial, sans-serif;
            font-size: 14px;
            line-height: 1.6;
            color: #000;
            background-color: #fff;
        }

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

        header {
            border-top: 1px solid #cacaca;
            padding: 20px 0;
            margin-top: 17px;
        }

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

        .logo {
            font-size: 24px;
            font-weight: bold;
            color: #4a7cab;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        nav {
            border-top: 1px solid #cacaca;
            border-bottom: 1px solid #cacaca;
            margin: 20px 0;
        }

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

        nav ul li {
            margin: 0;
        }

        nav ul li a {
            display: block;
            padding: 18px 20px;
            color: #000;
            text-decoration: none;
            text-transform: uppercase;
            font-size: 16px;
            transition: all 0.3s ease;
        }

        nav ul li a:hover {
            color: #4a7cab;
            border-bottom: 4px solid #4a7cab;
        }

        main {
            padding: 30px 0;
            min-height: 500px;
        }

        h1 {
            font-size: 28px;
            font-weight: normal;
            text-transform: uppercase;
            color: #000;
            border-bottom: 1px solid #cacaca;
            padding-bottom: 15px;
            margin-bottom: 30px;
            letter-spacing: 0.5px;
        }

        article {
            margin-bottom: 40px;
        }

        article h2 {
            font-size: 22px;
            font-weight: normal;
            text-transform: uppercase;
            color: #000;
            margin: 30px 0 15px;
            letter-spacing: 0.5px;
        }

        article h3 {
            font-size: 18px;
            font-weight: normal;
            text-transform: uppercase;
            color: #000;
            margin: 25px 0 12px;
        }

        article h4 {
            font-size: 16px;
            font-weight: normal;
            text-transform: uppercase;
            color: #000;
            margin: 20px 0 10px;
        }

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

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

        article ul li, article ol li {
            margin-bottom: 8px;
            line-height: 1.7;
        }

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

        .transition-content p {
            margin-bottom: 15px;
            line-height: 1.7;
        }

        {% if links %}
        .links-section {
            background-color: #f8f8f8;
            border: 1px solid #e0e0e0;
            padding: 30px;
            margin: 40px 0;
            border-radius: 4px;
        }

        .links-section h2 {
            font-size: 22px;
            font-weight: normal;
            text-transform: uppercase;
            color: #000;
            border-bottom: 1px solid #cacaca;
            padding-bottom: 15px;
            margin-bottom: 25px;
            letter-spacing: 0.5px;
        }

        .links-section h3 {
            font-size: 18px;
            font-weight: normal;
            text-transform: uppercase;
            color: #4a7cab;
            margin: 25px 0 15px;
        }

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

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

        .links-section ul li a {
            color: #587ec6;
            text-decoration: none;
            line-height: 1.6;
            display: inline-block;
            transition: color 0.3s ease;
        }

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

        footer {
            background: #191919;
            color: #818181;
            padding: 30px 0;
            margin-top: 50px;
        }

        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 30px;
        }

        .footer-section {
            flex: 1;
            min-width: 200px;
        }

        .footer-section h3 {
            color: #fff;
            font-size: 14px;
            font-weight: normal;
            margin-bottom: 15px;
            text-transform: uppercase;
        }

        .footer-section p {
            font-size: 12px;
            line-height: 1.5;
            margin-bottom: 10px;
        }

        .footer-section a {
            color: #fff;
            text-decoration: none;
            font-size: 12px;
        }

        .footer-section a:hover {
            text-decoration: underline;
        }

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

            nav ul li {
                width: 100%;
                border-bottom: 1px solid #e0e0e0;
            }

            nav ul li a {
                padding: 15px 10px;
            }

            h1 {
                font-size: 24px;
            }

            article h2 {
                font-size: 20px;
            }

            article h3 {
                font-size: 16px;
            }

            {% if links %}
            .links-section {
                padding: 20px;
            }

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

            .footer-content {
                flex-direction: column;
            }
        }

        @media screen and (max-width: 480px) {
            .container {
                padding: 0 10px;
            }

            h1 {
                font-size: 20px;
            }

            article h2 {
                font-size: 18px;
            }

            nav ul li a {
                font-size: 14px;
            }
        }
    