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

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            font-size: 16px;
            line-height: 1.6;
            color: #545454;
            background-color: #fff;
        }

        .top-header {
            background-color: #fff;
            border-bottom: 1px solid #e0e0e0;
        }

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

        .logo-section {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .logo-text {
            font-size: 1.3em;
            font-weight: bold;
            color: #0185AD;
        }

        .logo-highlight {
            color: #9FBB58;
        }

        .header-title {
            color: #0185AD;
            font-size: 1.8em;
            font-weight: 600;
            margin: 10px 0;
        }

        nav {
            background-color: #f8f8f8;
            border-bottom: 2px solid #9FBB58;
        }

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

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

        .nav-menu li {
            border-right: 1px solid #d0d0d0;
        }

        .nav-menu li:last-child {
            border-right: none;
        }

        .nav-menu a {
            display: block;
            padding: 15px 20px;
            color: #0185AD;
            text-decoration: none;
            font-size: 0.95em;
            transition: background-color 0.3s;
        }

        .nav-menu a:hover {
            background-color: #9FBB58;
            color: #fff;
        }

        .main-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        h1 {
            color: #0185AD;
            font-size: 2em;
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 2px solid #9FBB58;
            text-transform: uppercase;
        }

        article {
            margin-bottom: 40px;
        }

        article h2 {
            color: #0185AD;
            font-size: 1.5em;
            margin-top: 30px;
            margin-bottom: 15px;
        }

        article h3 {
            color: #0185AD;
            font-size: 1.3em;
            margin-top: 25px;
            margin-bottom: 12px;
        }

        article p {
            margin-bottom: 15px;
            line-height: 1.7;
        }

        article a {
            color: #0185AD;
            text-decoration: none;
        }

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

        article ul, article ol {
            margin-left: 25px;
            margin-bottom: 15px;
        }

        article li {
            margin-bottom: 8px;
        }

        .transition-section {
            background-color: #f8f8f8;
            padding: 30px;
            margin: 40px 0;
            border-left: 4px solid #9FBB58;
            border-radius: 4px;
        }

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

        .links-section {
            background-color: #f1f1f1;
            padding: 40px 30px;
            margin-top: 40px;
            border-radius: 8px;
        }

        .links-section h2 {
            color: #0185AD;
            font-size: 1.6em;
            margin-bottom: 30px;
            text-align: center;
        }

        .links-section h3 {
            color: #0185AD;
            font-size: 1.2em;
            margin-top: 25px;
            margin-bottom: 12px;
            padding-bottom: 8px;
            border-bottom: 1px solid #9FBB58;
        }

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

        .links-section li {
            margin-bottom: 10px;
            break-inside: avoid;
        }

        .links-section a {
            color: #0185AD;
            text-decoration: none;
            display: inline-block;
            padding: 5px 0;
            transition: color 0.3s;
        }

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

        .links-section a::before {
            content: "▸ ";
            color: #9FBB58;
            margin-right: 5px;
        }

        footer {
            background-color: #f1f1f1;
            margin-top: 60px;
            padding: 40px 20px;
            border-top: 3px solid #9FBB58;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-menu {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            justify-content: center;
        }

        .footer-menu li {
            border-right: 1px solid #acacac;
            padding-right: 15px;
        }

        .footer-menu li:last-child {
            border-right: none;
        }

        .footer-menu a {
            color: #545454;
            text-decoration: none;
            font-size: 0.9em;
        }

        .footer-menu a:hover {
            color: #0185AD;
            text-decoration: underline;
        }

        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                text-align: center;
            }

            .header-title {
                font-size: 1.4em;
            }

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

            .nav-menu li {
                border-right: none;
                border-bottom: 1px solid #d0d0d0;
            }

            .nav-menu li:last-child {
                border-bottom: none;
            }

            h1 {
                font-size: 1.6em;
            }

            .links-section ul {
                columns: 1;
            }

            .footer-menu {
                flex-direction: column;
                gap: 10px;
                align-items: center;
            }

            .footer-menu li {
                border-right: none;
                padding-right: 0;
            }
        }

        @media (max-width: 480px) {
            .main-container {
                padding: 20px 15px;
            }

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

            .transition-section {
                padding: 20px;
            }
        }
    