
        @font-face {
            font-family: "Open Sans Condensed";
            font-style: normal;
            font-weight: 700;
        }

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

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

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

        .holder {
            margin: 0 auto;
            width: 100%;
            max-width: 980px;
            padding: 0 15px;
        }

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

        #logo {
            font-size: 24px;
            font-weight: bold;
            color: #fff;
            text-decoration: none;
            font-family: "Open Sans Condensed", arial, sans-serif;
        }

        #main_content_holder {
            background: #fff;
            padding: 30px 0;
        }

        h1 {
            font-family: "Open Sans Condensed", arial, sans-serif;
            font-size: 32px;
            font-weight: bold;
            color: #313744;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid #b1bcc9;
            text-transform: uppercase;
        }

        article {
            background: #fff;
            padding: 20px 0;
            color: #686c76;
            font-size: 14px;
            line-height: 1.8;
        }

        article h2 {
            font-family: "Open Sans Condensed", arial, sans-serif;
            font-size: 24px;
            font-weight: bold;
            color: #313744;
            margin: 25px 0 15px;
            text-transform: uppercase;
        }

        article h3 {
            font-family: "Open Sans Condensed", arial, sans-serif;
            font-size: 20px;
            font-weight: bold;
            color: #313744;
            margin: 20px 0 12px;
        }

        article p {
            margin-bottom: 15px;
            color: #686c76;
        }

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

        article li {
            margin-bottom: 8px;
        }

        .transition-content {
            background: #f9f9f9;
            padding: 20px;
            margin: 30px 0;
            border-left: 4px solid #4e97d5;
            color: #686c76;
            font-size: 14px;
        }

        {% if links %}
        .links-section {
            background: #e5e8ef;
            padding: 30px 20px;
            margin: 30px 0;
            border-radius: 5px;
        }

        .links-section h3 {
            font-family: "Open Sans Condensed", arial, sans-serif;
            font-size: 20px;
            font-weight: bold;
            color: #313744;
            margin-bottom: 15px;
            text-transform: uppercase;
        }

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

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

        .links-section a {
            color: #3b6db4;
            text-decoration: none;
            font-size: 14px;
            display: inline-block;
            transition: color 0.3s;
        }

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

        #main_footer_holder {
            background: #313744;
            margin-top: 50px;
            padding: 30px 0;
        }

        #footer {
            color: #bdc2cb;
            text-align: center;
            font-size: 14px;
        }

        #footer a {
            color: #498ed3;
            text-decoration: none;
        }

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

        @media (max-width: 768px) {
            .holder {
                padding: 0 20px;
            }

            h1 {
                font-size: 24px;
            }

            article h2 {
                font-size: 20px;
            }

            article h3 {
                font-size: 18px;
            }

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

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

        @media (max-width: 480px) {
            body {
                font-size: 13px;
            }

            h1 {
                font-size: 20px;
            }

            article {
                font-size: 13px;
            }

            .transition-content {
                padding: 15px;
            }

            .links-section {
                padding: 20px 15px;
            }
        }
    