  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: #e9ebee;
            color: #333;
            padding: 20px;
            line-height: 1.6;
        }
        
        .section-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 40px;
            color: #333;
            font-size: 2.5rem;
            font-weight: 700;
        }
        
        .section-subtitle {
            text-align: center;
            margin-bottom: 50px;
            color: #555;
            font-size: 1.2rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        
        /* Card Layout */
        .card-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }
        
        .card-002 {
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            padding: 25px;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.3);
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
        
        .card-002:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        }
        
        .card-title-002 {
            font-size: 1.5rem;
            color: #1877F2;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .card-image-002 {
            width: 100%;
            border-radius: 12px;
            overflow: hidden;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #f5f5f5;
        }
        
        .card-image-002.video {
            aspect-ratio: 9/16;
            max-height: 400px;
        }
        
        .card-image-002.poster {
            aspect-ratio: 4/5;
            max-height: 400px;
        }
        
        .card-image-002.story {
            aspect-ratio: 9/16;
            max-height: 400px;
        }
        
        .card-image-002.animation {
            aspect-ratio: 9/16;
            max-height: 400px;
        }
        
        .card-image-002 img,
        .card-image-002 video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 8px;
        }
        
        .card-content-002 {
            color: #555;
            width: 100%;
        }
        
        .card-content-002 p {
            margin-bottom: 10px;
        }
        
        .file-info-002 {
            background: rgba(24, 119, 242, 0.1);
            padding: 8px 15px;
            border-radius: 10px;
            font-size: 0.9rem;
            color: #1877F2;
            margin-top: 15px;
            display: inline-block;
        }
        
        /* Process Workflow */
        .process-container {
            display: flex;
            flex-direction: column;
            gap: 25px;
            margin-bottom: 50px;
        }
        
        .process-step-002 {
            display: flex;
            align-items: flex-start;
            gap: 25px;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 25px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }
        
        .process-step-002:hover {
            transform: translateX(10px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
        }
        
        .step-image-002 {
            width: 200px;
            height: 112px;
            border-radius: 12px;
            overflow: hidden;
            flex-shrink: 0;
            background: #f5f5f5;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }
        
        .step-image-002 img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .step-number-002 {
            background: linear-gradient(135deg, #1877F2, #0d5dbd);
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.2rem;
            flex-shrink: 0;
            margin-top: 10px;
        }
        
        .step-content-002 {
            flex: 1;
        }
        
        .step-content-002 h3 {
            color: #1877F2;
            margin-bottom: 10px;
            font-size: 1.3rem;
        }
        
        /* Icons and Emojis */
        .icon-002 {
            color: #1877F2;
            font-size: 1.5rem;
        }
        
        .emoji-002 {
            font-size: 1.2rem;
            margin-right: 5px;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .card-container {
                grid-template-columns: 1fr;
            }
            
            .process-step-002 {
                flex-direction: column;
                text-align: center;
            }
            
            .step-number-002 {
                align-self: center;
            }
            
            .step-image-002 {
                align-self: center;
                width: 100%;
                max-width: 300px;
                height: 169px;
            }
        }