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

        body {
            font-family: Arial, Helvetica, sans-serif;
            line-height: 1.6;
            color: #333;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            min-height: 100vh;
        }

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

        header {
            background: rgba(255, 255, 255, 0.98);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            padding: 2rem 0;
            margin-bottom: 2rem;
        }

        h1 {
            color: #764ba2;
            font-size: 2.5rem;
            text-align: center;
            font-weight: 700;
            letter-spacing: -0.5px;
        }

        main {
            background: white;
            border-radius: 12px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
            padding: 3rem;
            margin-bottom: 2rem;
        }

        article h2 {
            color: #667eea;
            font-size: 1.8rem;
            margin-top: 2rem;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 3px solid #667eea;
        }

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

        article h4 {
            color: #555;
            font-size: 1.2rem;
            margin-top: 1.2rem;
            margin-bottom: 0.6rem;
        }

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

        article strong, article b {
            color: #764ba2;
            font-weight: 600;
        }

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

        article li {
            margin-bottom: 0.5rem;
            line-height: 1.7;
        }

        .transition-section {
            background: #f8f9fa;
            border-radius: 8px;
            padding: 2rem;
            margin-bottom: 2rem;
        }

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

        .links-section {
            background: white;
            border-radius: 12px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
            padding: 3rem;
            margin-bottom: 2rem;
        }

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

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

        .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: #667eea;
            text-decoration: none;
            font-size: 1.05rem;
            transition: all 0.3s ease;
            display: inline-block;
            position: relative;
            padding-left: 1.2rem;
        }

        .links-section a:before {
            content: "→";
            position: absolute;
            left: 0;
            transition: transform 0.3s ease;
        }

        .links-section a:hover {
            color: #764ba2;
            transform: translateX(5px);
        }

        .links-section a:hover:before {
            transform: translateX(-3px);
        }

        footer {
            background: rgba(255, 255, 255, 0.98);
            padding: 2rem 0;
            margin-top: 3rem;
            box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
        }

        footer .container {
            text-align: center;
            color: #666;
            font-size: 0.95rem;
        }

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

            main {
                padding: 2rem 1.5rem;
            }

            article h2 {
                font-size: 1.5rem;
            }

            article h3 {
                font-size: 1.2rem;
            }

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

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

            .links-section h3 {
                font-size: 1.3rem;
            }

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

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

            main {
                padding: 1.5rem 1rem;
            }

            article p {
                font-size: 1rem;
            }

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