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

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background: #f5f5f5;
        }

        header {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 2rem 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .header-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .site-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
        }

        .site-description {
            font-size: 1.1rem;
            opacity: 0.95;
            font-weight: 300;
        }

        nav {
            background: #fff;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }

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

        .nav-menu {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
        }

        .nav-menu li {
            margin: 0;
        }

        .nav-menu a {
            display: block;
            padding: 1rem 1.5rem;
            color: #667eea;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            border-bottom: 3px solid transparent;
        }

        .nav-menu a:hover {
            background: #f8f9ff;
            border-bottom-color: #667eea;
        }

        main {
            max-width: 1200px;
            margin: 0 auto;
            padding: 3rem 20px;
        }

        h1 {
            font-size: 2.5rem;
            color: #2d3748;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 4px solid #667eea;
        }

        article {
            background: white;
            padding: 2.5rem;
            margin-bottom: 3rem;
            border-radius: 8px;
            box-shadow: 0 2px 15px rgba(0,0,0,0.08);
        }

        article h2 {
            color: #667eea;
            margin-top: 2rem;
            margin-bottom: 1rem;
            font-size: 1.8rem;
        }

        article h3 {
            color: #764ba2;
            margin-top: 1.5rem;
            margin-bottom: 0.8rem;
            font-size: 1.4rem;
        }

        article p {
            margin-bottom: 1.2rem;
            color: #4a5568;
            font-size: 1.05rem;
            line-height: 1.8;
        }

        .transition-section {
            background: white;
            padding: 2rem;
            margin-bottom: 3rem;
            border-radius: 8px;
            box-shadow: 0 2px 15px rgba(0,0,0,0.08);
            border-left: 5px solid #667eea;
        }

        .transition-section p {
            color: #4a5568;
            font-size: 1.05rem;
            line-height: 1.8;
            margin-bottom: 1rem;
        }

        .links-section {
            background: white;
            padding: 2.5rem;
            border-radius: 8px;
            box-shadow: 0 2px 15px rgba(0,0,0,0.08);
        }

        .links-section h3 {
            color: #667eea;
            margin-top: 2rem;
            margin-bottom: 1rem;
            font-size: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #e2e8f0;
        }

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

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

        .links-section li {
            padding: 0;
        }

        .links-section a {
            color: #4a5568;
            text-decoration: none;
            padding: 0.6rem 0;
            display: block;
            transition: all 0.3s ease;
            border-bottom: 1px solid transparent;
        }

        .links-section a:hover {
            color: #667eea;
            padding-left: 0.5rem;
            border-bottom-color: #667eea;
        }

        footer {
            background: #2d3748;
            color: white;
            text-align: center;
            padding: 2rem 20px;
            margin-top: 4rem;
        }

        @media (max-width: 768px) {
            .site-title {
                font-size: 1.8rem;
            }

            .site-description {
                font-size: 1rem;
            }

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

            .nav-menu a {
                padding: 0.8rem 1rem;
                border-bottom: 1px solid #e2e8f0;
            }

            h1 {
                font-size: 2rem;
            }

            article {
                padding: 1.5rem;
            }

            article h2 {
                font-size: 1.5rem;
            }

            article h3 {
                font-size: 1.2rem;
            }

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

            .links-section {
                padding: 1.5rem;
            }
        }

        @media (max-width: 480px) {
            header {
                padding: 1.5rem 0;
            }

            main {
                padding: 2rem 15px;
            }

            .site-title {
                font-size: 1.5rem;
            }

            h1 {
                font-size: 1.6rem;
            }
        }
    