
        @font-face {
            font-family: pt_sansregular;
            src: url('fonts/PT SANS/PTS55F-webfont.woff') format('woff');
            font-weight: 400;
            font-style: normal;
        }
        
        @font-face {
            font-family: pt_sansbold;
            src: url('fonts/PT SANS/PTS75F-webfont.woff') format('woff');
            font-weight: 400;
            font-style: normal;
        }

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

        body {
            font-family: pt_sansregular, Arial, Helvetica, sans-serif;
            font-size: 18px;
            line-height: 1.6;
            color: #1e1e1e;
            background-color: #fff;
            min-width: 320px;
        }

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

        header {
            background-color: #1e1e1e;
            padding: 20px 0;
            position: relative;
        }

        .logo {
            max-width: 200px;
            height: auto;
        }

        nav {
            margin-top: 15px;
        }

        nav ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
        }

        nav a {
            color: #fff;
            text-decoration: none;
            font-family: pt_sansbold;
            transition: color 0.3s;
        }

        nav a:hover {
            color: #f0e000;
        }

        main {
            padding: 40px 0;
            background: linear-gradient(to bottom, #f5f5f5 0%, #fff 100%);
        }

        h1 {
            font-family: pt_sansbold;
            font-size: 28px;
            text-transform: uppercase;
            margin: 0 0 30px;
            color: #1e1e1e;
        }

        h2 {
            font-family: pt_sansbold;
            font-size: 25px;
            margin: 30px 0 15px;
            color: #1e1e1e;
        }

        h3 {
            font-family: pt_sansbold;
            font-size: 22px;
            margin: 25px 0 15px;
            color: #1e1e1e;
            text-transform: uppercase;
        }

        article {
            background: #fff;
            padding: 30px;
            margin-bottom: 40px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        }

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

        .transition-section {
            background: #f8f8f8;
            padding: 30px;
            margin-bottom: 40px;
            border-left: 4px solid #f0e000;
        }

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

        {% if links %}
        .links-section {
            background: #fff;
            padding: 40px 30px;
            margin-bottom: 40px;
            border: 2px solid #f0e000;
        }

        .links-section h3 {
            color: #1e1e1e;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 3px solid #f0e000;
        }

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

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

        .links-section a {
            color: #1e1e1e;
            text-decoration: none;
            border-bottom: 2px solid #f0e000;
            transition: border-color 0.2s;
            display: inline-block;
            padding-bottom: 2px;
        }

        .links-section a:hover {
            border-bottom-color: #1e1e1e;
        }
        {% endif %}

        footer {
            background: #1e1e1e;
            color: #fff;
            padding: 40px 0 20px;
            text-align: center;
        }

        footer p {
            margin-bottom: 10px;
            font-size: 16px;
        }

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

        footer a:hover {
            color: #fff;
        }

        @media (min-width: 768px) {
            h1 {
                font-size: 48px;
            }

            h2 {
                font-size: 30px;
            }

            nav ul {
                justify-content: center;
            }

            article {
                padding: 50px;
            }

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

        @media (min-width: 992px) {
            main {
                padding: 60px 0;
            }

            .transition-section {
                padding: 40px 50px;
            }

            .links-section {
                padding: 50px 60px;
            }
        }

        @media (max-width: 767px) {
            nav ul {
                flex-direction: column;
                gap: 10px;
            }

            article {
                padding: 20px;
            }

            .transition-section {
                padding: 20px;
            }

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