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

        body {
            font-family: "Lucida Grande", Arial, Helvetica, sans-serif;
            font-size: 16px;
            line-height: 1.6;
            color: #333;
            background-color: #F0F0F0;
        }

        a {
            color: #0052A3;
            text-decoration: none;
        }

        a:hover {
            color: #1A8DFF;
        }

        #header {
            background: #1e1b1a;
            border-bottom: 5px solid #383332;
            padding: 20px 0;
        }

        #branding {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .blog-name {
            font-size: 28px;
            font-weight: bold;
            color: #FFF;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 5px;
        }

        .blog-name a {
            color: #FFF;
        }

        .blog-description {
            font-size: 14px;
            color: #7d716d;
            text-transform: uppercase;
        }

        #nav {
            background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAAeCAYAAADtlXTHAAAAG0lEQVQIW2P8//8/AwMDEwMDAwMDAwMDAwMAAAYmAgF/hMj1AAAAAElFTkSuQmCC) repeat-x top #F0F0F0;
            border-bottom: 1px solid #CCC;
            min-height: 45px;
        }

        #nav-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .menu {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 5px;
        }

        .menu li {
            position: relative;
        }

        .menu > li > a {
            display: block;
            padding: 12px 15px;
            color: #666;
            font-size: 13px;
            text-transform: uppercase;
            font-weight: bold;
            border: solid #DDD;
            border-width: 0 1px;
            transition: all 0.3s;
        }

        .menu > li > a:hover {
            background: #FFF;
            color: #0052A3;
        }

        #wrapper {
            max-width: 1200px;
            margin: 30px auto;
            padding: 0 20px;
        }

        #main {
            background: #FFF;
            border: 1px solid #CCC;
            padding: 40px;
            margin-bottom: 30px;
        }

        h1 {
            font-size: 32px;
            font-weight: bold;
            color: #333;
            margin-bottom: 25px;
            line-height: 1.3;
            padding-bottom: 15px;
            border-bottom: 3px solid #0052A3;
        }

        article {
            margin-bottom: 40px;
        }

        article h2 {
            font-size: 24px;
            color: #333;
            margin: 30px 0 15px;
            font-weight: bold;
        }

        article h3 {
            font-size: 20px;
            color: #333;
            margin: 25px 0 12px;
            font-weight: bold;
        }

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

        article p {
            margin-bottom: 18px;
            line-height: 1.7;
            color: #333;
        }

        article ul,
        article ol {
            margin: 15px 0 15px 30px;
            line-height: 1.7;
        }

        article li {
            margin-bottom: 8px;
        }

        article blockquote {
            border-left: 4px solid #0052A3;
            padding: 15px 20px;
            margin: 20px 0;
            background: #F5F5F5;
            font-style: italic;
            color: #666;
        }

        .transition-section {
            background: #F9F9F9;
            border: 1px solid #E0E0E0;
            padding: 25px;
            margin: 30px 0;
            border-radius: 4px;
        }

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

        .links-section {
            background: #FAFAFA;
            border: 1px solid #DDD;
            padding: 35px;
            margin-top: 30px;
            border-radius: 4px;
        }

        .links-section h2 {
            font-size: 26px;
            color: #333;
            margin-bottom: 25px;
            padding-bottom: 12px;
            border-bottom: 2px solid #0052A3;
        }

        .links-section h3 {
            font-size: 20px;
            color: #333;
            margin: 25px 0 15px;
            font-weight: bold;
        }

        .links-section ul {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px 30px;
            margin-bottom: 30px;
        }

        .links-section li {
            padding-left: 20px;
            position: relative;
        }

        .links-section li:before {
            content: "→";
            position: absolute;
            left: 0;
            color: #0052A3;
            font-weight: bold;
        }

        .links-section a {
            color: #0052A3;
            font-weight: 500;
            line-height: 1.5;
            display: inline-block;
        }

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

        #footer {
            background: #1e1b1a;
            color: #7d716d;
            padding: 30px 20px;
            text-align: center;
            font-size: 13px;
            margin-top: 50px;
        }

        #footer p {
            margin: 8px 0;
        }

        @media (max-width: 768px) {
            #branding {
                text-align: center;
            }

            .blog-name {
                font-size: 22px;
            }

            .menu {
                flex-direction: column;
                align-items: stretch;
            }

            .menu > li > a {
                border-width: 1px 0;
            }

            #main {
                padding: 25px 20px;
            }

            h1 {
                font-size: 26px;
            }

            article h2 {
                font-size: 22px;
            }

            article h3 {
                font-size: 19px;
            }

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

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

        @media (max-width: 480px) {
            .blog-name {
                font-size: 18px;
            }

            .blog-description {
                font-size: 12px;
            }

            #main {
                padding: 20px 15px;
            }

            h1 {
                font-size: 22px;
            }

            article h2 {
                font-size: 20px;
            }

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