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

        html {
            height: 100%;
        }

        body {
            font-family: 'Trebuchet MS', Arial, Helvetica, sans-serif;
            color: #7d7d7d;
            font-size: 12px;
            line-height: 1.5em;
            background: #ececec;
            min-height: 100%;
            display: flex;
            flex-direction: column;
        }

        .container {
            max-width: 960px;
            width: 100%;
            margin: 0 auto;
            padding: 0 30px;
            background: #fff;
            flex: 1;
        }

        header {
            padding: 30px 0 20px;
            border-bottom: 6px solid #03368f;
            margin-bottom: 20px;
        }

        .logo {
            color: #00338e;
            font-size: 24px;
            font-weight: bold;
            text-decoration: none;
            display: inline-block;
        }

        nav {
            margin-top: 15px;
        }

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

        nav li {
            background: #a90083;
            border-right: 1px solid #b62695;
        }

        nav a {
            display: block;
            padding: 8px 17px;
            color: #fff;
            text-decoration: none;
            font-weight: bold;
            font-size: 14px;
        }

        nav a:hover {
            background: #870069;
        }

        .breadcrumb {
            margin: 20px 0;
            font-size: 12px;
        }

        .breadcrumb a {
            color: #7d7d7d;
            text-decoration: none;
        }

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

        .breadcrumb .current {
            color: #00338e;
        }

        h1 {
            color: #a8007a;
            font-size: 24px;
            font-weight: bold;
            margin: 20px 0;
            padding-bottom: 10px;
            border-bottom: 2px solid #f4f4f4;
        }

        article {
            margin-bottom: 30px;
            line-height: 1.6em;
        }

        article h2 {
            color: #a8007a;
            font-size: 18px;
            font-weight: bold;
            margin: 20px 0 10px;
        }

        article h3 {
            color: #00338e;
            font-size: 16px;
            font-weight: bold;
            margin: 15px 0 10px;
        }

        article p {
            margin-bottom: 1em;
            font-size: 13px;
        }

        article ul {
            margin: 10px 0 10px 20px;
            list-style: none;
        }

        article li {
            padding-left: 20px;
            background: url('data:image/gif;base64,R0lGODlhBwAHAIABAAAAAP///yH5BAEAAAEALAAAAAAHAAcAAAIKhI+py+0PYysVADs=') 5px 6px no-repeat;
            margin-bottom: 5px;
        }

        article a {
            color: #00338e;
            text-decoration: underline;
        }

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

        article strong {
            font-weight: bold;
        }

        article em {
            font-style: italic;
        }

        .transition-section {
            margin: 30px 0;
            padding: 20px 0;
            border-top: 1px solid #dedede;
        }

        .transition-section p {
            margin-bottom: 1em;
            font-size: 13px;
            line-height: 1.6em;
        }

        .links-section {
            margin: 30px 0;
            padding: 25px;
            background: #e5ebf5;
            border-radius: 3px;
        }

        .links-section h2 {
            color: #00338e;
            font-size: 20px;
            font-weight: bold;
            margin-bottom: 20px;
        }

        .links-section h3 {
            color: #a8007a;
            font-size: 16px;
            font-weight: bold;
            margin: 20px 0 10px;
        }

        .links-section h3:first-child {
            margin-top: 0;
        }

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

        .links-section li {
            break-inside: avoid;
            padding: 5px 0;
        }

        .links-section a {
            color: #00338e;
            text-decoration: none;
            font-size: 13px;
            display: inline-block;
            line-height: 1.4;
        }

        .links-section a:hover {
            text-decoration: underline;
            color: #a8007a;
        }

        footer {
            border-top: 1px solid #abbcda;
            padding: 15px 0;
            margin-top: 30px;
            font-size: 13px;
        }

        footer .footer-content {
            max-width: 960px;
            margin: 0 auto;
            padding: 0 30px;
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            align-items: center;
        }

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

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

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

            nav ul {
                flex-direction: column;
            }

            nav li {
                border-right: none;
                border-bottom: 1px solid #b62695;
            }

            h1 {
                font-size: 20px;
            }

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

            footer .footer-content {
                padding: 0 15px;
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }
        }

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

            nav a {
                font-size: 13px;
                padding: 6px 12px;
            }

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