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

        body {
            font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
            font-size: 12px;
            line-height: 1.8;
            color: #444;
            background: #eee url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAIAAAACCAYAAABytg0kAAAAF0lEQVQIW2NkYGD4z8DAwMgABXAGNgGAC0QBBauNiQAAAABJRU5ErkJggg==") repeat;
            -webkit-font-smoothing: antialiased;
        }

        a {
            color: #e40074;
            text-decoration: none;
        }

        a:hover {
            text-decoration: underline;
        }

        .container {
            width: 1040px;
            min-width: 200px;
            max-width: 85%;
            margin: 0 auto;
        }

        #wrap {
            margin: 40px auto;
            background: #fff;
            box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.15);
        }

        #masthead {
            position: relative;
            padding: 40px 25px;
            border-bottom: 5px solid #eee;
        }

        .logo h1 {
            font-size: 32px;
            margin: 0;
            line-height: 1.3em;
            font-weight: 700;
            color: #000;
        }

        #navbar {
            background: #114392;
            border-bottom: 5px solid #eee;
            position: relative;
        }

        .nav-menu {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
        }

        .nav-menu li {
            border-right: 1px solid rgba(255,255,255, 0.1);
            border-left: 1px solid rgba(0,0,0,1);
        }

        .nav-menu li:first-child {
            border-left: none;
        }

        .nav-menu a {
            font-size: 12px;
            height: 50px;
            line-height: 50px;
            color: #fff;
            padding: 0 25px;
            text-decoration: none;
            font-weight: 700;
            display: block;
        }

        .nav-menu a:hover {
            background: #e5007d;
            text-decoration: none;
        }

        #main {
            background: #fff;
            padding: 25px;
        }

        h1 {
            font-size: 24px;
            margin: 0 0 20px;
            font-weight: bold;
            color: #213b7f;
        }

        h2, h3, h4, h5, h6 {
            color: #213b7f;
            font-weight: 600;
            margin: 30px 0 20px;
        }

        h2 {
            font-size: 18px;
        }

        h3 {
            font-size: 16px;
        }

        article p {
            margin: 0 0 20px;
        }

        article {
            margin-bottom: 40px;
        }

        .transition-section {
            margin: 40px 0;
        }

        .links-section {
            background: #f6f6f6;
            border: 4px solid #ddd;
            padding: 20px;
            margin-top: 40px;
        }

        .links-section h3 {
            color: #203b7f;
            font-size: 16px;
            margin: 20px 0 10px;
            padding-bottom: 7px;
            border-bottom: 1px solid #eee;
        }

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

        .links-section ul {
            list-style: none;
            margin: 0;
            padding: 0;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
        }

        .links-section li {
            margin: 0;
            padding: 0;
        }

        .links-section a {
            display: block;
            padding: 8px 0;
            color: #e40074;
            font-weight: 600;
        }

        .links-section a:hover {
            color: #000;
        }

        #footer {
            color: #9f9f9f;
            position: relative;
            padding: 25px 25px 0;
            background: #114392;
            font-size: 12px;
            min-height: 5px;
            border-top: 5px solid #eee;
        }

        #footer-bottom {
            color: #9f9f9f;
            padding: 10px 25px;
            font-size: 11px;
            background-color: #0e2351;
            margin: 0;
        }

        #footer-bottom a {
            color: #ccc;
        }

        #copyright {
            font-size: 11px;
        }

        @media only screen and (max-width: 767px) {
            .container {
                max-width: 95%;
            }

            #wrap {
                margin: 20px auto;
            }

            #masthead {
                padding: 20px 15px;
            }

            .logo h1 {
                font-size: 24px;
            }

            .nav-menu {
                flex-direction: column;
            }

            .nav-menu li {
                border-left: none;
                border-right: none;
                border-bottom: 1px solid rgba(255,255,255, 0.1);
                border-top: 1px solid rgba(0,0,0,1);
            }

            #main {
                padding: 15px;
            }

            .links-section {
                padding: 15px;
            }

            .links-section ul {
                grid-template-columns: 1fr;
            }

            h1 {
                font-size: 20px;
            }

            h2 {
                font-size: 16px;
            }

            h3 {
                font-size: 14px;
            }
        }

        @media only screen and (min-width: 768px) and (max-width: 1024px) {
            .container {
                max-width: 93%;
            }
        }
    