
        * {
            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-color: #f5f5f5;
        }

        header {
            background: linear-gradient(135deg, #4D73BF 0%, #3d5fa8 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;
        }

        .site-subtitle {
            font-size: 1.1rem;
            opacity: 0.95;
            font-style: italic;
        }

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

        h1 {
            font-size: 2.2rem;
            color: #2c3e50;
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 3px solid #4D73BF;
        }

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

        article h2 {
            font-size: 1.8rem;
            color: #34495e;
            margin-top: 2rem;
            margin-bottom: 1rem;
            border-bottom: 2px solid #D9D9D9;
            padding-bottom: 0.5rem;
        }

        article h3 {
            font-size: 1.5rem;
            color: #34495e;
            margin-top: 1.5rem;
            margin-bottom: 0.8rem;
        }

        article h4 {
            font-size: 1.3rem;
            color: #2c3e50;
            margin-top: 1.2rem;
            margin-bottom: 0.8rem;
            font-weight: 600;
        }

        article p {
            margin-bottom: 1rem;
            color: #444;
            font-size: 1.05rem;
        }

        article ul, article ol {
            margin-left: 2rem;
            margin-bottom: 1rem;
        }

        article li {
            margin-bottom: 0.5rem;
            color: #444;
        }

        article img {
            max-width: 100%;
            height: auto;
            border-radius: 4px;
            margin: 1rem 0;
        }

        article table {
            width: 100%;
            margin: 1rem 0;
            border-collapse: collapse;
        }

        article hr {
            margin: 2rem 0;
            border: none;
            border-top: 1px solid #D9D9D9;
        }

        .transition-section {
            background: #edf3fe;
            padding: 2rem;
            margin-bottom: 2rem;
            border-radius: 8px;
            border-left: 4px solid #4D73BF;
        }

        .transition-section p {
            color: #444;
            font-size: 1.05rem;
            line-height: 1.7;
        }

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

        .links-section h2 {
            font-size: 2rem;
            color: #2c3e50;
            margin-bottom: 2rem;
            text-align: center;
        }

        .links-section h3 {
            font-size: 1.4rem;
            color: #4D73BF;
            margin-top: 2rem;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #D9D9D9;
        }

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

        .links-section li {
            padding: 0;
        }

        .links-section a {
            color: #0066cc;
            text-decoration: none;
            transition: color 0.3s ease;
            display: inline-block;
            padding: 0.3rem 0;
        }

        .links-section a:hover {
            color: #4D73BF;
            text-decoration: underline;
        }

        footer {
            background: #34495e;
            color: white;
            padding: 2rem 0;
            margin-top: 3rem;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            text-align: center;
        }

        .footer-content p {
            opacity: 0.9;
        }

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

            h1 {
                font-size: 1.8rem;
            }

            article {
                padding: 1.5rem;
            }

            article h2 {
                font-size: 1.5rem;
            }

            article h3 {
                font-size: 1.3rem;
            }

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

            .links-section {
                padding: 1.5rem;
            }

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

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

            .site-subtitle {
                font-size: 0.95rem;
            }

            h1 {
                font-size: 1.5rem;
            }

            article {
                padding: 1rem;
            }

            article h2 {
                font-size: 1.3rem;
            }

            article p, article li {
                font-size: 1rem;
            }
        }
    