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

        body {
            font-family: Arial, Helvetica, sans-serif;
            line-height: 1.6;
            color: #000;
            background-color: #fff;
        }

        .container {
            max-width: 760px;
            margin: 0 auto;
            padding: 0 15px;
        }

        /* Header */
        .header {
            background-color: #333366;
            color: #fff;
            padding: 10px 0;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .logo {
            font-size: 24px;
            font-weight: bold;
        }

        .welcome-text {
            font-size: 12px;
            text-align: center;
        }

        .welcome-text a {
            color: #fff;
            text-decoration: none;
        }

        .welcome-text a:hover {
            text-decoration: underline;
        }

        /* Navigation */
        .navbar {
            background-color: #eeeeee;
            border: 1px solid #c0c0c0;
            padding: 8px 0;
        }

        .nav-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
            list-style: none;
        }

        .nav-links li {
            padding: 5px 10px;
            transition: background-color 0.3s;
        }

        .nav-links li:hover {
            background-color: #c0c0c0;
        }

        .nav-links a {
            color: #000;
            text-decoration: none;
            font-weight: bold;
            font-size: 9pt;
        }

        /* Main Content */
        .main-content {
            padding: 20px 0;
        }

        h1 {
            font-size: 28px;
            color: #333366;
            margin-bottom: 20px;
            font-weight: bold;
        }

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

        article p {
            margin-bottom: 15px;
            font-size: 14px;
            color: #000;
        }

        article h2, article h3, article h4 {
            color: #333366;
            margin: 20px 0 15px 0;
            font-weight: bold;
        }

        article h2 {
            font-size: 20px;
        }

        article h3 {
            font-size: 18px;
        }

        article h4 {
            font-size: 16px;
        }

        .transition-section {
            margin: 30px 0;
            padding: 20px;
            background-color: #f8f8f8;
            border-left: 4px solid #333366;
        }

        .transition-section p {
            font-size: 14px;
            color: #333;
        }

        /* Links Section */
        .links-section {
            background-color: #f5f5f5;
            padding: 30px 20px;
            border-radius: 8px;
            margin-top: 30px;
        }

        .links-section h3 {
            color: #333366;
            font-size: 16px;
            font-weight: bold;
            margin-bottom: 15px;
            padding: 8px;
            background-color: #eeeeee;
            border-left: 4px solid #333366;
        }

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

        .links-section li {
            padding: 5px 0;
        }

        .links-section a {
            color: #003399;
            text-decoration: none;
            font-size: 14px;
            display: block;
            padding: 5px;
            border-radius: 3px;
            transition: background-color 0.3s;
        }

        .links-section a:hover {
            text-decoration: underline;
            background-color: #e6f2ff;
        }

        /* Footer */
        .footer {
            background-color: #999999;
            color: #fff;
            text-align: center;
            padding: 20px 0;
            margin-top: 40px;
        }

        .footer-links {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: #333366;
            text-decoration: none;
            font-size: 12px;
            margin: 0 5px;
        }

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

        .divider {
            color: #cccccc;
            margin: 0 3px;
        }

        .copyright {
            font-size: 12px;
            margin-top: 10px;
        }

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

        .copyright a:hover {
            text-decoration: underline;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .container {
                padding: 0 10px;
            }

            .header-content {
                flex-direction: column;
                text-align: center;
            }

            .nav-links {
                flex-direction: column;
                gap: 10px;
            }

            h1 {
                font-size: 24px;
            }

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

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

            .divider {
                display: none;
            }
        }

        @media (max-width: 480px) {
            h1 {
                font-size: 22px;
            }

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

            article p {
                font-size: 13px;
            }
        }
    