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

        body {
            font-family: "Lato", "Arial", "Helvetica", sans-serif;
            line-height: 1.6;
            color: #555;
            background-color: #efefef;
            -webkit-font-smoothing: antialiased;
        }

        #container {
            width: 100%;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        #wrapper {
            flex: 1;
            background-color: #fff;
        }

        #header {
            background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9IiMwZjM5ODAiLz48L3N2Zz4=) no-repeat center center;
            background-size: cover;
            background-color: #0f3980;
            border-bottom: 1px solid #ccc;
            padding: 20px 0;
        }

        .head-wrap {
            max-width: 940px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }

        #logo .site-name {
            font-size: 2.1em;
            line-height: 1em;
            text-transform: uppercase;
            font-weight: 500;
            color: #fff;
            text-decoration: none;
        }

        #logo .site-name span {
            font-weight: 700;
        }

        .main-nav {
            margin-top: 14px;
        }

        .menu {
            list-style: none;
            display: flex;
            gap: 0;
        }

        .menu li {
            position: relative;
        }

        .menu a {
            display: block;
            padding: 0 1em;
            color: #fff;
            text-decoration: none;
            font-size: 18px;
            font-weight: 500;
            line-height: 45px;
            text-transform: uppercase;
            transition: all 0.3s ease;
        }

        .menu a:hover {
            color: #ccc;
            border-bottom: 3px solid #1fc1e2;
        }

        .menu .current-menu-item a,
        .menu .current_page_item a {
            border-bottom: 3px solid #1fc1e2;
        }

        #content-full {
            max-width: 940px;
            margin: 40px auto 20px;
            padding: 0 20px;
        }

        h1 {
            font-size: 2.2em;
            color: #1fc1e2;
            font-weight: 500;
            margin: 0.5em 0;
            line-height: 1em;
        }

        article h2 {
            font-size: 2.25em;
            margin: 0.75em 0;
            font-weight: 700;
            color: #555;
        }

        article h3 {
            font-size: 1.7em;
            color: #1fc1e2;
            font-weight: 500;
            margin: 1.3em 0 0.857em;
        }

        article h4 {
            font-size: 1.5em;
            margin: 1em 0;
            font-weight: 700;
        }

        article h5 {
            font-size: 1.125em;
            margin: 1.125em 0;
            font-weight: 700;
        }

        article h6 {
            font-size: 1em;
            margin: 1.285em 0;
            font-weight: 700;
        }

        article p {
            margin: 1.2em 0 0.9em;
            word-wrap: break-word;
        }

        article ul,
        article ol {
            margin: 0 1.5em 1.5em 0;
            padding-left: 1.3em;
        }

        article ul {
            list-style-type: disc;
        }

        article ol {
            list-style-type: decimal;
        }

        article li {
            margin: 0.5em 0;
        }

        article a {
            color: #1fc1e2;
            text-decoration: none;
            font-weight: 400;
        }

        article a:hover {
            color: #0f3981;
        }

        article strong,
        article b {
            font-weight: 700;
        }

        article em,
        article i {
            font-style: italic;
        }

        .transition-section {
            margin: 2em 0;
            padding: 1.5em 0;
        }

        .links-section {
            margin: 2em 0;
            padding: 2em;
            background-color: #f9f9f9;
            border-radius: 4px;
            border: 1px solid #e5e5e5;
        }

        .links-section h3 {
            font-size: 1.7em;
            color: #1fc1e2;
            font-weight: 500;
            margin: 1.5em 0 0.857em;
        }

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

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

        .links-section li {
            margin: 0.5em 0;
            break-inside: avoid;
        }

        .links-section a {
            color: #1fc1e2;
            text-decoration: none;
            font-weight: 400;
            transition: color 0.3s ease;
        }

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

        #footer {
            background: #1fc1e2;
            color: #fff;
            padding: 18px 25px;
            margin-top: auto;
        }

        #footer-wrapper {
            max-width: 940px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }

        .copyright {
            font-size: 11px;
        }

        .copyright a {
            color: #fff;
            text-decoration: none;
            font-weight: 600;
        }

        .footer-menu {
            list-style: none;
            display: flex;
            gap: 0;
            flex-wrap: wrap;
        }

        .footer-menu li a {
            padding: 0 12px;
            color: #fff;
            text-decoration: none;
            font-size: 1.2em;
            text-transform: uppercase;
            font-weight: 600;
            transition: color 0.3s ease;
        }

        .footer-menu li a:hover {
            color: #ccc;
        }

        @media screen and (max-width: 980px) {
            .menu a {
                font-size: 14px;
                padding: 0 0.7em;
            }

            #logo .site-name {
                font-size: 1.8em;
            }

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

        @media screen and (max-width: 650px) {
            .head-wrap {
                flex-direction: column;
                text-align: center;
            }

            #logo {
                margin: 0;
            }

            .main-nav {
                margin-top: 20px;
                width: 100%;
            }

            .menu {
                flex-direction: column;
                align-items: center;
                width: 100%;
            }

            .menu li {
                width: 100%;
                text-align: center;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }

            .menu a {
                width: 100%;
            }

            #footer-wrapper {
                flex-direction: column;
                text-align: center;
                gap: 10px;
            }

            .copyright,
            .foot-col {
                width: 100%;
            }

            .footer-menu {
                justify-content: center;
                margin-top: 10px;
            }

            .footer-menu li a {
                padding: 0 8px;
                font-size: 1em;
            }

            h1 {
                font-size: 1.8em;
            }

            article h2 {
                font-size: 1.8em;
            }

            article h3 {
                font-size: 1.4em;
            }

            .links-section {
                padding: 1.5em 1em;
            }

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

        @media screen and (max-width: 480px) {
            #logo .site-name {
                font-size: 1.5em;
            }

            .menu a {
                font-size: 16px;
            }

            h1 {
                font-size: 1.5em;
            }

            article h2 {
                font-size: 1.5em;
            }

            article h3 {
                font-size: 1.2em;
            }

            .links-section h3 {
                font-size: 1.3em;
            }

            .footer-menu {
                flex-direction: column;
                gap: 5px;
            }

            .footer-menu li a {
                padding: 5px;
                display: block;
            }
        }
    