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

        body {
            font-family: Arial, Verdana, sans-serif;
            font-size: 14px;
            line-height: 1.6;
            color: #393939;
            background-color: #fff;
        }

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

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

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

        .logo {
            font-size: 24px;
            font-weight: bold;
            color: #3091be;
        }

        nav ul {
            list-style: none;
            display: flex;
            background: #2e2e2e;
            margin: 0;
        }

        nav li {
            position: relative;
        }

        nav a {
            display: block;
            padding: 12px 15px;
            color: #fff;
            text-decoration: none;
            font-size: 13px;
            text-transform: uppercase;
            border-right: 1px solid #414141;
        }

        nav a:hover {
            background: #363636;
            color: #fff;
        }

        nav ul ul {
            position: absolute;
            top: 100%;
            left: 0;
            background: #1c1b1b;
            min-width: 175px;
            display: none;
            z-index: 999;
        }

        nav li:hover > ul {
            display: block;
        }

        nav ul ul a {
            padding: 8px 15px;
            font-size: 12px;
            text-transform: none;
            border-right: none;
            border-bottom: 1px solid #333;
        }

        nav ul ul a:hover {
            background: #92a509;
        }

        main {
            padding: 30px 0;
        }

        h1 {
            font-size: 26px;
            color: #3091be;
            text-transform: uppercase;
            margin-bottom: 20px;
            font-weight: normal;
            border-bottom: 1px solid #e1e1e1;
            padding-bottom: 10px;
        }

        article {
            margin-bottom: 30px;
        }

        article h2 {
            font-size: 16px;
            color: #097cb2;
            font-weight: bold;
            text-transform: uppercase;
            padding-left: 15px;
            margin: 20px 0 15px 0;
            background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAAGklEQVQYV2NkYGDYBMLkKQSBUQVjRBGQAAMA3wAG8TSmEGsAAAAASUVORK5CYII=') no-repeat left 6px;
        }

        article h3 {
            font-size: 14px;
            font-weight: bold;
            color: #92a509;
            padding-left: 10px;
            margin: 15px 0 10px 0;
            background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAYAAAAGCAYAAADgzO9IAAAAG0lEQVQIHWNkYGBgwAcYBxVQDjAOKhjJgAkAAD8ABP9T8mUyAAAAAElFTkSuQmCC') no-repeat left 5px;
        }

        article p {
            margin: 10px 0;
            text-align: justify;
            color: #000;
        }

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

        article ul li {
            padding-left: 15px;
            margin: 5px 0;
            background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAYAAAAGCAYAAADgzO9IAAAAG0lEQVQIHWNkYGBgwAcYBxVQDjAOKhjJgAkAAD8ABP9T8mUyAAAAAElFTkSuQmCC') no-repeat left 6px;
            list-style: none;
        }

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

        .links-section {
            background: #fafafa;
            padding: 30px 0;
            margin-top: 30px;
        }

        .links-section h3 {
            font-size: 14px;
            color: #92a509;
            font-weight: bold;
            font-family: Arial, sans-serif;
            margin-bottom: 15px;
            padding-left: 0;
            background: none;
        }

        .links-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin-bottom: 30px;
        }

        .links-section ul {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .links-section li {
            margin: 8px 0;
            padding: 0;
            background: none;
        }

        .links-section li a {
            color: #6a6b66;
            text-decoration: none;
            font-size: 13px;
            display: block;
            padding: 3px 0;
        }

        .links-section li a:hover {
            text-decoration: underline;
            color: #3091be;
        }

        footer {
            background: #2e2e2e;
            color: #dfdfdf;
            padding: 30px 0;
            margin-top: 50px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
        }

        footer h2 {
            color: #92a509;
            font-size: 14px;
            font-weight: bold;
            margin-bottom: 15px;
            background: none;
            padding: 0;
            text-transform: none;
        }

        footer ul {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        footer li {
            margin: 8px 0;
            background: none;
            padding: 0;
        }

        footer a {
            color: #dfdfdf;
            text-decoration: none;
            font-size: 11px;
        }

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

        footer p {
            font-size: 11px;
            line-height: 1.4;
            text-align: justify;
            margin: 0;
        }

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

            .header-inner {
                flex-direction: column;
                gap: 15px;
            }

            nav ul {
                flex-direction: column;
                background: #2e2e2e;
            }

            nav li {
                width: 100%;
            }

            nav a {
                border-right: none;
                border-bottom: 1px solid #414141;
            }

            nav ul ul {
                position: static;
                display: block;
                background: #1c1b1b;
                margin-left: 15px;
            }

            h1 {
                font-size: 22px;
            }

            .links-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 20px;
            }
        }
    