.beian-header {
            background-color: #f9f9f9;
            padding: 80px 0;
            text-align: center;
        }
        
        .beian-icon {
	width: 130px;
	height: 130px;
	background-color: #F85835;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
}
        
        .beian-icon img {
	width: 90px;
	height: 90px;
	object-fit: contain;
}
        
        .beian-header h1 {
            font-size: 32px;
            margin-bottom: 15px;
            color: #000;
        }
        
        .beian-header p {
            font-size: 16px;
            color: #333;
            margin-bottom: 30px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .btn-box {
            display: flex;
            justify-content: center;
            gap: 15px;
            flex-wrap: wrap;
        }
        
        .beian-features {
            padding: 60px 0;
        }
        
        .feature-card {
            background-color: #f9f9f9;
            border-radius: 8px;
            padding: 30px;
            text-align: center;
            transition: all 0.3s ease;
        }
        
        .feature-card:hover {
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transform: translateY(-5px);
        }
        
        .feature-card h3 {
            font-size: 20px;
            margin-bottom: 15px;
            color: #000;
        }
        
        .feature-card p {
            color: #666;
            font-size: 14px;
            line-height: 1.6;
        }
        
        @media (max-width: 768px) {
            .beian-header {
                padding: 40px 0;
            }
            
            .beian-icon {
                width: 60px;
                height: 60px;
                margin: 0 auto 15px;
            }
            
            .beian-icon img {
                width: 40px;
                height: 40px;
            }
            
            .beian-header h1 {
                font-size: 24px;
            }
            
            .beian-header p {
                font-size: 14px;
                margin-bottom: 20px;
            }
            
            .btn-box a {
                padding: 10px 20px !important;
                font-size: 14px !important;
            }
        }