        .container-home {
            width: 100%;
            max-width: 1115px;
            /*background: white;*/
            border-radius: 12px;
            /*box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);*/
            padding: 40px;
            text-align: center;
        }
              
        .description {
            color: #666;
            margin-bottom: 30px;
            line-height: 1.6;
            font-size: 15px;
        }
        
        .wechat-widget {
            display: flex;
            width: 500px;
            /*margin: 0 auto;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);*/
            border-radius: 12px;
            /*padding: 8px;*/
            /*box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            border: 1px solid #e0e0e0;*/
        }
        
        .consult-label {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 120px;
            background: linear-gradient(to right, #07c160, #09d669);
            color: white;
            font-weight: 600;
            font-size: 14px;
            border-radius: 8px 0 0 8px;
            padding: 0 15px;
            position: relative;
            overflow: hidden;
        }
        
        .consult-label::after {
            content: '';
            position: absolute;
            top: 0;
            right: -10px;
            width: 20px;
            height: 100%;
            background: linear-gradient(to right, rgba(255,255,255,0.2), transparent);
            transform: skewX(-15deg);
        }
        
        .copy-container-home {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 380px;
            /*background: white;*/
            border-radius: 0 8px 8px 0;
            /*padding: 0 15px;
            border-left: 1px solid #e0e0e0;*/
        }
        
        .wechat-info {
            display: flex;
            align-items: center;
            font-size: 14px;
            color: #333;
        }
        
        .wechat-icon {
            color: #07c160;
            margin-right: 8px;
            font-size: 16px;
        }
        
        .wechat-id {
            font-weight: 500;
            color: #07c160;
        }
        
        .copy-btn-home {
            width: 100px;
            height: 23px;
            background: linear-gradient(to right, #07C160, #07C160);
            color: white;
            border: none;
            border-radius: 4px;
            font-size: 12px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0;
            box-shadow: 0 2px 5px rgba(74, 107, 255, 0.2);
        }
        
        .copy-btn-home:hover {
            background: linear-gradient(to right, #3a5bef, #5a7bef);
            transform: translateY(-1px);
            box-shadow: 0 4px 8px rgba(74, 107, 255, 0.3);
        }
        
        .copy-btn-home:active {
            transform: translateY(0);
        }
        
        .copy-btn-home.copied {
            background: linear-gradient(to right, #07c160, #09d669);
            width: 130px;
        }
        
        .copy-btn-home i {
            margin-right: 5px;
            font-size: 11px;
        }
        
        .instructions {
            margin-top: 25px;
            text-align: left;
            background: #f9f9f9;
            padding: 15px;
            border-radius: 8px;
            border-left: 4px solid #4a6bff;
        }
        
        .instructions h3 {
            color: #333;
            margin-bottom: 10px;
            font-size: 16px;
        }
        
        .instructions ol {
            padding-left: 20px;
            color: #555;
            font-size: 14px;
            line-height: 1.6;
        }
        
        .instructions li {
            margin-bottom: 8px;
        }
        

        
        @media (max-width: 550px) {
            .container-home {
                padding: 20px;
            }
            
            .wechat-widget {
                width: 100%;
                flex-direction: column;
            }
            
            .consult-label {
                width: 100%;
                border-radius: 8px 8px 0 0;
                padding: 10px;
            }
            
            .copy-container-home {
                width: 100%;
                border-radius: 0 0 8px 8px;
                border-left: none;
                border-top: 1px solid #e0e0e0;
                padding: 15px;
                flex-direction: column;
                gap: 15px;
            }
            
            .copy-btn-home {
                width: 100%;
                height: 35px;
            }
        }