
        * {
            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: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            min-height: 100vh;
        }

        header {
            background: rgba(0, 0, 0, 0.8);
            padding: 1.5rem 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

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

        nav ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            justify-content: center;
        }

        nav a {
            color: #fff;
            text-decoration: none;
            font-weight: 500;
            font-size: 1rem;
            transition: color 0.3s ease;
            position: relative;
        }

        nav a:hover {
            color: #a8b3ff;
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: #a8b3ff;
            transition: width 0.3s ease;
        }

        nav a:hover::after {
            width: 100%;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 3rem 2rem;
        }

        h1 {
            color: #fff;
            font-size: 2.5rem;
            margin-bottom: 2rem;
            text-align: center;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        article {
            background: #fff;
            padding: 3rem;
            border-radius: 15px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
            margin-bottom: 3rem;
        }

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

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

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

        article p {
            margin-bottom: 1.25rem;
            color: #555;
            font-size: 1.05rem;
        }

        .transition-section {
            background: rgba(255, 255, 255, 0.95);
            padding: 2rem 3rem;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
            margin-bottom: 3rem;
        }

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

        .links-section {
            background: #fff;
            padding: 3rem;
            border-radius: 15px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
        }

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

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

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

        .links-section li {
            padding: 0.5rem 0;
        }

        .links-section a {
            color: #667eea;
            text-decoration: none;
            font-size: 1rem;
            transition: all 0.3s ease;
            display: inline-block;
        }

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

        .links-section a::before {
            content: '→ ';
            margin-right: 0.5rem;
            color: #764ba2;
        }

        footer {
            background: rgba(0, 0, 0, 0.8);
            color: #fff;
            padding: 2rem 0;
            margin-top: 3rem;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        footer ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            justify-content: center;
        }

        footer a {
            color: #fff;
            text-decoration: none;
            font-size: 0.95rem;
            transition: color 0.3s ease;
        }

        footer a:hover {
            color: #a8b3ff;
        }

        @media (max-width: 768px) {
            nav ul {
                gap: 1rem;
                flex-direction: column;
                align-items: center;
            }

            h1 {
                font-size: 2rem;
            }

            article {
                padding: 2rem 1.5rem;
            }

            article h2 {
                font-size: 1.75rem;
            }

            article h3 {
                font-size: 1.3rem;
            }

            .transition-section {
                padding: 1.5rem;
            }

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

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

            .container {
                padding: 2rem 1rem;
            }

            footer ul {
                flex-direction: column;
                align-items: center;
                gap: 0.75rem;
            }
        }

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

            article {
                padding: 1.5rem 1rem;
            }

            article h2 {
                font-size: 1.5rem;
            }

            article p, .transition-section p {
                font-size: 1rem;
            }
        }
    